Re: After Firefox upgrade, browser no longer prints without CUPS
On Fri 2 Dec 05 21:07, Joshua Tinnin <[EMAIL PROTECTED]> wrote: > On Fri 2 Dec 05 16:43, Micah <[EMAIL PROTECTED]> wrote: > > Joshua Tinnin wrote: > > > On Thu 1 Dec 05 22:35, Micah <[EMAIL PROTECTED]> wrote: > > >>Joshua Tinnin wrote: > > >>>What does Firefox use to recognize printers? Every other > > >>>application recognizes and uses the generic UNIX lpd (with > > >>>Ghostscript and hpdij), which is what Firefox used before I > > >>>upgraded it to 1.5. Now it insists on using CUPS or PostScript. > > >>>I've been Googling for two days and can't figure out how to get > > >>> it back where it was. > > >>> > > >>>Have to say, I love FreeBSD, but printing is a serious hassle. > > >>>Every time the smallest thing changes, it breaks and requires > > >>>several days of maddening searching and tweaking to get it back > > >>> the way it was. Am about to break down and get a print server, > > >>> as this is way too much to deal with on a regular basis. > > >> > > >>Did you try printing using the "postscript/default" printer? If > > >> that is broken, the "properties" button on the print window > > >> should allow you to specify lpd as the print command. > > > > > > Yes, I tried this, although lpd is the daemon, right? It's > > > already running through lpd_enable="YES" in /etc/rc.conf, in any > > > event. I used lpr. It tells me the paper size is not supported by > > > the printer (8.5"x11"), which is definitely not true. > > > > You're right, I meant lpr. And something is wrong with FireFox's > > printer handling. I used to have two printers setup in FireFox > > (and Mozilla before), one for the default printer (lpr) and one for > > kprinter (both are the same physical printer, just different > > frontends to it). FireFox 1.5 added the cups printer and now > > FireFox seems to be having trouble telling which printer is which. > > Clicking on propterties for PostScript/Default shows me the > > propterties for PostScript/kprinter, and PostScript/kprinter's > > properties shows me PostScript/Default. Odd. The settings in > > prefs.js look fine. > > Well, there's yet another update for Firefox. Don't have time to look > it over at the moment, but am going to portupgrade it and see what > happens. I may have borked ghostscript the last time I updated it > (missed ijs, which my printer needs, but I recompiled and reinstalled > it), so I reinstalled it and then reinstalled apsfilter. Didn't seem > to help, and not sure why Firefox would need correct printer drivers > at compile time, but will see what transpires after this next update. OK, that didn't do it, but I figured it out, at least my problem. There were several messages in the archives about this same problem, but this is the one that solved it: http://lists.freebsd.org/pipermail/freebsd-questions/2005-October/101080.html In about:config, print.printer_list had no string when I checked it. I entered the string (without quotes) "lp hpdjet" (hpdjet being the name of my printer in /etc/printcap), and I got my list back, including CUPS/lp (was there before the fix, and doesn't work, but I don't use CUPS), PostScript/default (was there before the fix, doesn't work), PostScript/hpdjet (reappeared, works), and another printer in printcap I entered previously, which I guess it couldn't see if there were no string in that particular preference, but I didn't specify it in print.printer_list. So, guess that string has to be set for any printer in /etc/printcap for it to work with the default UNIX print daemon, and somehow that string was stripped or not carried over with the upgrade to 1.5. Incidentally, one of my printers on the drop-down list in Firefox from /etc/printcap is having the issue described here: http://www-math.mit.edu/~dave/bugs/#paper_mozilla I am not sure how to resolve this, but it's a duplicate entry of another printer, so it's not a major issue. - jt ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: BSD vs Linux Threads
It probably is because mysql is optimized for the Linux threading implementation. Also keep in mind that freebsd filesystems are mounted async by default, not sync by default like Linux, as a result FreeBSD always does worse in these stupid bakeoffs you read about in the trade rags. You can install the linux threading package under FreeBSD's linux emulation and try it that way. Keep in mind also that you are talking minute performance differences on the newest multi-gigahertz systems. Furthermore I will point out that unless your database is smaller than physical memory of the server, then the argument between mysql threading and non-threading is a completely moot issue since the hits to the disk will be the bottleneck. There is a lot to optimizing databases. I suggest you build you server and if it's too slow, then post to the mysql forums, you will get a lot of feedback as to how to optimize. Ted >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Behalf Of Cody Holland >Sent: Thursday, December 01, 2005 12:36 PM >To: Kris Kennaway >Cc: freebsd-questions@freebsd.org >Subject: RE: BSD vs Linux Threads > > >Well in the past it was stated that on a MySQL server installed using >Linux threads was faster than using the native BSD threads. I'm in the >process of building a new MySQL 5 server with FreeBSD 5.4 and was >wanting to know if using the Linux threads was still faster. > >Cody > > > >> >> On Thu, Dec 01, 2005 at 02:14:05PM -0600, Cody Holland wrote: >> > Ok, I know this has come up before but I cannot find any good >> > documentation on BSD vs Linux threads using 5.4 or 6.0. This will >> > basically be for a multi-processor mysql 5 server. What are your >> > recommendations? >> >> What are your questions? :) >> >> Kris >> >___ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"[EMAIL PROTECTED]" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.362 / Virus Database: 267.13.10/190 - Release >Date: 12/1/2005 > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: eBay is recomending MS-IE-6 for better service UNDERFreeBSD-5.4?????
Uh, no: C:\Documents and Settings\tedm>netstat /all Displays protocol statistics and current TCP/IP network connections. NETSTAT [-a] [-e] [-n] [-s] [-p proto] [-r] [interval] -aDisplays all connections and listening ports. -eDisplays Ethernet statistics. This may be combined with the -s option. -nDisplays addresses and port numbers in numerical form. -p proto Shows connections for the protocol specified by proto; proto may be TCP or UDP. If used with the -s option to display per-protocol statistics, proto may be TCP, UDP, or IP. -rDisplays the routing table. -sDisplays per-protocol statistics. By default, statistics are shown for TCP, UDP and IP; the -p option may be used to specify a subset of the default. interval Redisplays selected statistics, pausing interval seconds between each display. Press CTRL+C to stop redisplaying statistics. If omitted, netstat will print the current configuration information once. C:\Documents and Settings\tedm> Libby, don't forget that the command-line TCP/IP programs that are under Windows are all ports of the BSD versions, and I believe the usual thing on those ports was to call switchchar and set the char to -. Some of the older Microsoft C developers workbenches even still had the BSD copyrights in the include files that were supplied by Microsoft. Somewhere around here I have an e- mail that documentss exactly what versions. Ted >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Behalf Of Libby >Charles-CCL044 >Sent: Wednesday, November 30, 2005 7:01 AM >To: Kris Anderson; Hanno Krusken >Cc: freebsd-questions@freebsd.org >Subject: RE: eBay is recomending MS-IE-6 for better service >UNDERFreeBSD-5.4? > > >That would be netstat /all > >Windows does not like the - options > >Charles > >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] On Behalf Of Kris Anderson >Sent: Tuesday, November 29, 2005 4:07 PM >To: Hanno Krusken >Cc: freebsd-questions@freebsd.org >Subject: Re: eBay is recomending MS-IE-6 for better service >UNDERFreeBSD-5.4 ? > > > > >--- Hanno Krusken <[EMAIL PROTECTED]> wrote: > >> Hi eBay, >> >> Now, I think you don't understand. >> >> Internet explorer 6 is by far older than the >> advanced >> FirFox 1.0.7 ! >> I use the same FireFox 1.0.7 under XP with out >> problems, but I'm working under FreeBSD-UNIX the >> MS-intenet explorer dose not work under Unix any >> way. >> >> I only need to know which port needed to be open in >> my >> firewall to do image uploads. >> >> Hanno >> > > >Hiya, > >If you have a Windows computer running around you can >open a command prompt, go through the steps to start >uploading an image then go back to the command prompt >and type netstat -a. It will list local and foreign connections, find >the one(s) for eBay and see what ports are reflect connectivity your >computer is using. > >Hope that helps. > > > >__ >Start your day with Yahoo! - Make it your home page! >http://www.yahoo.com/r/hs >___ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"[EMAIL PROTECTED]" >___ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"[EMAIL PROTECTED]" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.362 / Virus Database: 267.13.10/190 - Release >Date: 12/1/2005 > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: FreeBSD telnetd and Microsoft Internet Explorer
Whoah whoah whoah Guys, I have several 5.4 servers. Hitting them with IE 6.0.2800.1106 ftp client I get NO PROBLEMS seeing dot files. I DO NOT see the behavior that the OP claims. NOR do I see the behavior that you guys are claiming either of IE's FTP client being bad. Nor do I see this behavior on a 6.0 FreeBSD server. I respectfully submit that both you and the OP are off your rockers. You guys, probably because you don't know how to setup Windows properly. (which is understandable) The OP probably because he doesen't know how to setup FreeBSD properly, plus has borked some settting in his IE. Note he hasn't posted the IE version. Note he hasn't setup a test login on his FTP server and invited anyone to try it and see if they are getting the same problem. Can you say "Troll bait"? I knew you could. AND YES, I did try a few FTP sites on that URL. No problem with any of them. AND NO I do not recommend IE as a FTP client either. And I respectfully submit that a recommendation against IE from someone who must apparently know how to set it up properly should IMHO carry more weight than one from someone who apparently doesen't know how to set it up properly. If you think IE's FTP client is so bad then post a few sites and I'll go to them and put up some screen captures of my IE. Go ahead, prove I'm wrong. I'd like to see it crash. I dare you. And Stevan, STFU until your willing to post a test login on this allegedly bad FreeBSD system of yours. Ted >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] Behalf Of Peter Clutton >Sent: Thursday, December 01, 2005 4:26 AM >To: Stevan Tiefert >Cc: freebsd-questions@freebsd.org >Subject: Re: FreeBSD telnetd and Microsoft Internet Explorer > > >On 12/1/05, Stevan Tiefert <[EMAIL PROTECTED]> wrote: >> Am Donnerstag, 1. Dezember 2005 06:37 schrieb Peter Clutton: >> Thanks for your off-topic message... You helped very well to solve a >> problem. :-( > >Well actually I did help solve the problem, because the problem is >most likely your client. It is impossible for anyone to look at what >else could be causing problems, when your particular client in known >to have very major problems. It's not that it's windows, we help here >alot to connect the two, but the ftp client in particular, just plain >out doesn't work. > > >>There are many ftp-sites >> where IE can access them without problems. > >I beg to differ, and so would anybody else who uses ftp on a regular >basis. Do what i did today on my Win2k machine with IE and firefox and >go to the site http://www.ftp-sites.org/ >Find a locale near you, and go down the first 20 (or 100 if you have >time) on the list and tell me how many work with IE and how many with >Firefox. I got a 20 - 0 in favor of Firefox. In all cases i had to >ctr-alt-del the IE because it failed. I mean it just isn't normal or >acceptable for software to completely crash that often. > >Here's another one i had to ctl-alt-del for IE: ftp://ftp.windows.com > . Works great out of Firefox! Pretty funny really. > >The point is you are asking us in our free time to chase a wild goose, >because you're using a known broken ftp implementation. Someone might >be more inclined if you suggested just about any other ftp client. >___ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to >"[EMAIL PROTECTED]" > >-- >No virus found in this incoming message. >Checked by AVG Free Edition. >Version: 7.1.362 / Virus Database: 267.13.10/190 - Release >Date: 12/1/2005 > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Delete kernel folder
I recently complied my custom kernel and I am going to compile it again to add a few extra options that I missed. I noticed that after the first compile it placed my CUSTOM (kernel) folder in /usr/obj/usr/src/sys/ Do I need to delete this folder if I am going to recompile the kernel again? What if I just give it a new name? Thank you in advance, Jose ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: php5 install fails
On Sun, 20 Nov 2005, Mike Fern wrote: does libtool exist in the path? if not, you can change the configuration value of SH_LIBTOOL (SH_LIBTOOL='/usr/local/build-1/libtool') For the archives: Problem was: I have two versions of libtool installed: libtool13 and libtool15 . I set a symbolic link # ln -s /usr/local/bin/libtool15 /usr/local/build-1/libtool Thus I don't have to read libtool documentation: I only want to do some "Hello World!" stuff with php5. Thanks, Uli. On 11/20/05, P.U.Kruppa <[EMAIL PROTECTED]> wrote: Hi, on 6.0-STABLE FreeBSD 6.0-STABLE #0: Sat Nov 19 14:31:13 CET 2005 php5 build seems to work fine but install fails: -- [EMAIL PROTECTED] make install ===> Installing for php5-5.0.5_1 ===> php5-5.0.5_1 depends on file: /usr/local/sbin/apxs - found ===> php5-5.0.5_1 depends on executable: pkg-config - found ===> php5-5.0.5_1 depends on shared library: xml2.5 - found ===> Generating temporary packing list ===> Checking if lang/php5 already installed Installing PHP SAPI module: apache2handler /usr/local/share/apache21/build/instdso.sh SH_LIBTOOL='/usr/local/build-1/libtool' libphp5.la /usr/local/libexec/apache21 /usr/local/build-1/libtool --mode=install cp libphp5.la /usr/local/libexec/apache21/ /usr/local/share/apache21/build/instdso.sh: /usr/local/build-1/libtool: not found apxs:Error: Command failed with rc=8323072 . *** Error code 1 Stop in /usr/ports/lang/php5/work/php-5.0.5. *** Error code 1 Stop in /usr/ports/lang/php5. -- What can be done? Regards, Uli. * * Peter Ulrich Kruppa - Wuppertal - Germany * * ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]" * * Peter Ulrich Kruppa - Wuppertal - Germany * * ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
dd on a usb floppy (/dev/da0) failing
On FreeBSD 6.0-RELEASE, when I run 'dd if=./image.dd of=/dev/da' i get the following: dd: /dev/da0: Device busy 1+0 records in 0+0 records out 0 bytes transferred in 2.xxx secs (0 bytes/sec) This is as root with rw permissions on /dev/da0. And the floppy is not mounted. Reading geom(4) mentions that this kind of thing can happen, but there is no solution. I tried setting the foot shooting debug through sysctl, and it still doesn't work. What do I have to do to be able to do a dd of a floppy image onto a USB floppy? Thanks, Joel ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FireFox not starting in 6.0
i finally am getting started with 6.0, after a lot of time of installation. Most things are going well but the wierdest problem: i cant get FireFox to start! It built fine, no errors, but it just doesnt start. There arent really anymore details i can give. It doesnt matter if I click the FF icon in Gnome, or type 'firefox' on the commandline. (There's no output from doing that: $ firefox $ so no errors or anything.) What to do? Epiphany works fine and Opera does too but i like FireFox. Thanks. Jen __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: After Firefox upgrade, browser no longer prints without CUPS
On Fri 2 Dec 05 16:43, Micah <[EMAIL PROTECTED]> wrote: > Joshua Tinnin wrote: > > On Thu 1 Dec 05 22:35, Micah <[EMAIL PROTECTED]> wrote: > >>Joshua Tinnin wrote: > >>>What does Firefox use to recognize printers? Every other > >>>application recognizes and uses the generic UNIX lpd (with > >>>Ghostscript and hpdij), which is what Firefox used before I > >>>upgraded it to 1.5. Now it insists on using CUPS or PostScript. > >>>I've been Googling for two days and can't figure out how to get it > >>>back where it was. > >>> > >>>Have to say, I love FreeBSD, but printing is a serious hassle. > >>>Every time the smallest thing changes, it breaks and requires > >>>several days of maddening searching and tweaking to get it back > >>> the way it was. Am about to break down and get a print server, as > >>> this is way too much to deal with on a regular basis. > >> > >>Did you try printing using the "postscript/default" printer? If > >> that is broken, the "properties" button on the print window should > >> allow you to specify lpd as the print command. > > > > Yes, I tried this, although lpd is the daemon, right? It's already > > running through lpd_enable="YES" in /etc/rc.conf, in any event. I > > used lpr. It tells me the paper size is not supported by the > > printer (8.5"x11"), which is definitely not true. > > You're right, I meant lpr. And something is wrong with FireFox's > printer handling. I used to have two printers setup in FireFox (and > Mozilla before), one for the default printer (lpr) and one for > kprinter (both are the same physical printer, just different > frontends to it). FireFox 1.5 added the cups printer and now FireFox > seems to be having trouble telling which printer is which. Clicking > on propterties for PostScript/Default shows me the propterties for > PostScript/kprinter, and PostScript/kprinter's properties shows me > PostScript/Default. Odd. The settings in prefs.js look fine. Well, there's yet another update for Firefox. Don't have time to look it over at the moment, but am going to portupgrade it and see what happens. I may have borked ghostscript the last time I updated it (missed ijs, which my printer needs, but I recompiled and reinstalled it), so I reinstalled it and then reinstalled apsfilter. Didn't seem to help, and not sure why Firefox would need correct printer drivers at compile time, but will see what transpires after this next update. - jt ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Dual Display
On Fri, Dec 02, 2005 at 10:51:08PM -0500, Darren Terry wrote: > I was wondering if any of you had a dual-head setup and if so what > video card were you using? > yup, nVidia GeForce's: MX-440, TI-4200, FX-5700 -- Regards, Doug ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Dual Display
I was wondering if any of you had a dual-head setup and if so what video card were you using? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Camserv setup
Hello all, Any one running camserv successfully on 5.4 STABLE? I just loaded it last night and hooked up my USB camera, which comes up immediately as ugen0, a Konica Color web cam. Any help is appreciated. Thanks, Ron Clark ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: How to upgrade gnome/glib/gt on 4.11
On Saturday 03 December 2005 03:12, RW wrote: > On Friday 02 December 2005 19:28, Tuc at T-B-O-H wrote: > > Hi, > > > > I was looking to upgrade using the : > > > > http://www.marcuscom.com/downloads/gnome_upgrade212.sh > > > > but it tells me that 4.11-STABLE isn't supported. Is there a > > procedure to do the upgrade? > > If the new version of Gnome actually works on 4.11, then portupgrade can > probably handle it. Oops. I meant portmanager ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: How to upgrade gnome/glib/gt on 4.11
On Friday 02 December 2005 19:28, Tuc at T-B-O-H wrote: > Hi, > > I was looking to upgrade using the : > > http://www.marcuscom.com/downloads/gnome_upgrade212.sh > > but it tells me that 4.11-STABLE isn't supported. Is there a > procedure to do the upgrade? If the new version of Gnome actually works on 4.11, then portupgrade can probably handle it. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Removing packages
On Friday 02 December 2005 05:16 pm, Trey Sizemore wrote: > salamander# pkg_info |grep -i "openoffice" > openoffice.org-2.0.0_1 > salamander# cd /usr/ports/editors/openoffice.org-1.1 Should be: salamander# cd /usr/ports/editors/openoffice.org-2.0 since pkg_info says you have OOo 2.0 installed, not 1.1. -- Kirk Strauser pgpuKazCMUAdI.pgp Description: PGP signature
Re: How can I get 4.9-ISO-IMAGES-i386
Thanks for your help,thank you very much! 2005/12/3, David Miao <[EMAIL PROTECTED]>: > > On 12/2/05, YE ZHIJIE <[EMAIL PROTECTED]> wrote: > > Can you give me an answer,Thanks! > > > > -- > > 叶智杰 > > > > ___ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to " > [EMAIL PROTECTED]" > > > > > > [http] > http://www.linorg.sc.usp.br/iso/FreeBSD/4.9/ > > [bit torrent] > http://www.nuxo.net/download.php?cat=FreeBSD&page=1 > > MD5 (4.9-i386-disc1.iso) = 9195be15a4c8c54a6a6a23272ddacaae > MD5 (4.9-i386-disc2.iso) = 51d28c35308cc916b9a9bfcacb3146b8 > MD5 (4.9-i386-mini.iso) = 2635f02aebce8e1c2b83d1acdbbcb2ea > > Regards, > David > -- 叶智杰 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
ad_attach panic 6.0-RELEASE AMD64
I'm getting the following panic after I install 6.0-RELEASE. This doesn't occur if I install 5.4-STABLE-SNAP009. Fatal trap 18: integer divide fault while in kernel mode instruction pointer = 0x8:0x801a447f stack pointer = 0x10:0x80674ae0 frame pointer = 0x10:0x80674be0 code segment= base 0x0, limit 0xf, type 0x1b = DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags= interrupt enabled, resume, IOPL = 0 current process = 0 (swapper) [thread pid 0 tid 0 ] Stopped at ad_attach+0x3ef:divq%rsi,%eax db> bt Tracing pid 0 tid 0 td 0x805845e0 ad_attach() at ad_attach+0x3ef device_attach() at device_attach+0x292 bus_generic_attach() at bus_generic_attach+0x18 ata_identify() at ata_identify+0xe6 ata_boot_attach() at ata_boot_attach+0x50 run_interrupt_driven_config_hooks() at run_interrupt_driven_config_hooks+0x2a mi_startup() at mi_startup+0xc9 btext() at btext+0x2c http://am-productions.biz/docs/kev-amd64-pciconf.txt.gz http://am-productions.biz/docs/kev-acpidump.txt.gz http://am-productions.biz/docs/kev-dmesg.txt.gz Let me know what other information I need to provide. -- Anish Mistry pgpZd0Wdvd5Du.pgp Description: PGP signature
Re: After Firefox upgrade, browser no longer prints without CUPS
Joshua Tinnin wrote: On Thu 1 Dec 05 22:35, Micah <[EMAIL PROTECTED]> wrote: Joshua Tinnin wrote: What does Firefox use to recognize printers? Every other application recognizes and uses the generic UNIX lpd (with Ghostscript and hpdij), which is what Firefox used before I upgraded it to 1.5. Now it insists on using CUPS or PostScript. I've been Googling for two days and can't figure out how to get it back where it was. Have to say, I love FreeBSD, but printing is a serious hassle. Every time the smallest thing changes, it breaks and requires several days of maddening searching and tweaking to get it back the way it was. Am about to break down and get a print server, as this is way too much to deal with on a regular basis. Did you try printing using the "postscript/default" printer? If that is broken, the "properties" button on the print window should allow you to specify lpd as the print command. Yes, I tried this, although lpd is the daemon, right? It's already running through lpd_enable="YES" in /etc/rc.conf, in any event. I used lpr. It tells me the paper size is not supported by the printer (8.5"x11"), which is definitely not true. - jt You're right, I meant lpr. And something is wrong with FireFox's printer handling. I used to have two printers setup in FireFox (and Mozilla before), one for the default printer (lpr) and one for kprinter (both are the same physical printer, just different frontends to it). FireFox 1.5 added the cups printer and now FireFox seems to be having trouble telling which printer is which. Clicking on propterties for PostScript/Default shows me the propterties for PostScript/kprinter, and PostScript/kprinter's properties shows me PostScript/Default. Odd. The settings in prefs.js look fine. Later, Micah ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Java error.
Mehmet Fatih AKBULUT wrote: hi all. i tried to install java on my freebsd5.4 but when installing got the error below. any idea how to overcome this error ? \ fi /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:227: ')' expected private static final class Aliases ^ The errors you get are really weird. Maybe you should check if there isn't a quote (") missing somewhere before. I'm currently running jdk15 on current, and never had problems with it. If you still have the problem, could you send me the file /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java ? Could you also tell us which version of linux-jdk you have ? Cheers, -- Gregory ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Removing packages
On Fri, Dec 02, 2005 at 06:16:25PM -0500, Trey Sizemore wrote: > On Fri, 2 Dec 2005 23:57:48 +0100 > albi <[EMAIL PROTECTED]> wrote: > > > On Fri, 2 Dec 2005 17:51:16 -0500 > > Trey Sizemore <[EMAIL PROTECTED]> wrote: > > > > > I have OpenOffice 1.1.3 installed previously from packages. I have > > > recently installed OpenOffice 2.0 from ports. How do I go about: > > > > > > 1- removing the 1.1.3 package install - I know to use pkg_delete, > > > but can't seem to find the correct package name. > > > > pkg_info |grep -i "openoffice" .. doesn't help ? > > > > cd /usr/ports/editors/openoffice.org-1.1 ; make deinstall > > is also an idea > > > > No...it's very weird. It's definitely installed...I can start and use > it, but: You probably installed it without using the ports collection (or interrupted the port install before it could register the package, etc). Unfortunately this means it is going to be hard for you to completely remove it. Look into the example in the pkg_which manpage to see how to identify files that do not belong to any registered ports, but make sure to back up your system before you start to remove them (note: don't just remove them all blindly because some of those files may be legitimate). Kris pgpJuk58xrd93.pgp Description: PGP signature
Re: Trouble upgrading ports collection
On Friday 02 December 2005 14:17, Daniel Bye wrote: > On Fri, Dec 02, 2005 at 07:34:58PM +0100, edward wrote: > > : undefined reference to `glXGetProcAddress' > > > > xdriinfo.o(.text+0x5b): In function `main': > > : undefined reference to `glXGetProcAddress' > > > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients. > > Hi, > > This has been discussed several times on the X11 list - try searching > the archives at > http://www.freebsd.org/cgi/search.cgi?words=glXGetProcAddress&max=25&sort=s >core&index=recent&source=freebsd-x11 > > I had the very same problem a couple of weeks ago, but can't now for the > life of me remember now I fixed it... > > Using portmanager won't get you through this one - I use it in > preference to portupgrade these days, and still had the same problem. > > HTH > > Dan Thanks for the info, is this really the recommended fix??? Remove nvidia-driver port, then upgrade xorg-clients. After that you can reinstall nvidia-driver. I read the above as xorg-clients conflicts with nvidia-driver, if it was set this way here is what portmanager would do: 1) when upgrading xorg-clients finds conflicting port nvidia-driver installed and removes it unless user chooses otherwise before 5 minute timeout 2) Upgrade xorg-clients Athe this point something would have to have a dependency on nvidia-driver for it to be pulled back in automatically else the user is going to need to install it manaually... Well I can see how this situation is causing problems anyways... Has this issue been resolved yet? From reading your references it seems like this fixed the problem with xdriinfo.c: http://www.freebsd.org/cgi/query-pr.cgi?pr=76257 State-Changed-From-To: open->closed State-Changed-By: anholt State-Changed-When: Wed Nov 30 01:24:24 GMT 2005 State-Changed-Why: A patch has been committed to fix this. But I saw no other solution to handling the nvidia port. -Mike ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Removing packages
On Fri, 2 Dec 2005 23:57:48 +0100 albi <[EMAIL PROTECTED]> wrote: > On Fri, 2 Dec 2005 17:51:16 -0500 > Trey Sizemore <[EMAIL PROTECTED]> wrote: > > > I have OpenOffice 1.1.3 installed previously from packages. I have > > recently installed OpenOffice 2.0 from ports. How do I go about: > > > > 1- removing the 1.1.3 package install - I know to use pkg_delete, > > but can't seem to find the correct package name. > > pkg_info |grep -i "openoffice" .. doesn't help ? > > cd /usr/ports/editors/openoffice.org-1.1 ; make deinstall > is also an idea > No...it's very weird. It's definitely installed...I can start and use it, but: salamander# pkg_info |grep -i "openoffice" gcc-ooo-3.4.1_2 GNU Compiler Collection for OpenOffice.org openoffice.org-2.0.0_1 Integrated wordprocessor/dbase/spreadsheet/drawing/chart/br salamander# cd /usr/ports/editors/openoffice.org-1.1 salamander# pwd /usr/ports/editors/openoffice.org-1.1 salamander# make deinstall ===> Deinstalling for editors/openoffice.org-1.1 ===> openoffice.org not installed, skipping -- Cheers, Trey One cannot make an omelette without breaking eggs -- but it is amazing how many eggs one can break without making a decent omelette. -- Professor Charles P. Issawi FreeBSD 5.4-STABLE i386 GENERIC 6:15PM up 10:48, 0 users, load averages: 0.13, 0.07, 0.02 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: PAE not recognizing all RAM
On Fri, Dec 02, 2005 at 05:57:27PM -0500, Mike Barnard wrote: >Hi, all. I have a fairly beefy server (Dell PowerEdge 8450, > 8-processor 700 Mhz Xeon, 32GB RAM) I'm testing with FreeBSD. I got a > 6.0-RELEASE kernel compiled with both SMP and PAE (the only catch was > that the hptmv driver breaks the compile with SMP, but that's OK as I > don't need it), but for some reason the kernel is only seeing 3.5G of > RAM or thereabouts, judging from what I see in dmesg anyway: > > CPU: Intel Pentium III Xeon (700.07-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x6a1 Stepping = 1 > > Features=0x383fbff > real memory = 3758096384 (3584 MB) > avail memory = 3676594176 (3506 MB) > FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs > >The memory line displayed in "top" reflects similar values. Is there > some magic I need to do to make it see all the RAM? No, it should just work if you have the kernel configured correctly. At a guess you didn't actually enable PAE: please post your kernel config file so we can check. Kris pgpxAsYfvaHk5.pgp Description: PGP signature
Re: Removing packages
On Fri, Dec 02, 2005 at 05:51:16PM -0500, Trey Sizemore wrote: > I have OpenOffice 1.1.3 installed previously from packages. I have > recently installed OpenOffice 2.0 from ports. How do I go about: > > 1- removing the 1.1.3 package install - I know to use pkg_delete, but > can't seem to find the correct package name. You can use wildcards or just look at the name in /var/db/pkg. I have tcsh auto-completion commands in my .tcshrc: complete pkg_info "[EMAIL PROTECTED]@F:/var/db/pkg/@" complete pkg_delete "[EMAIL PROTECTED]@F:/var/db/pkg/@" that would just let me pkg_delete openoffice and have it autocomplete. > 2- having 2.0 show up in my KDE menu - I thought installing the port > would have done this. You probably need to teach KDE about it explicitly. There is a KDE menu update tool that might find it. Kris pgpMgDIni90Oc.pgp Description: PGP signature
Re: Network Config Issue...
Robert wrote: > I'm setting up my NIC in fbsd 6 and I can't find where I saved my ISP's > domain address. > > It used to be something like "westln01.mi.comcast.net" (without the quotes) > but that doesn't work. I've tried some variations but nothing so far. > Comcast was very unhelpful. > > Does anyone know of a way to find that info? > > Thanks, > > Rob I'm not sure of your exact setup, but you probably won't need that info. If this is on a home connection and you plan to use it behind a router or something, you can put in pretty much anything for the hostname/domain (for example, mine is "amd64.localhost"). If it's directly into a cable modem then maybe try via DHCP or however they assign addresses. An easy way to find that info out though is here: http://ipchicken.com/ At the bottom it lists your reverse DNS. You could also do a nslookup on your IP to get it. -Mark -- GnuPG Public Key: http://www.mkproductions.org/mk_pubkey.asc Internet Radio: Party107 (Trance/Electronic) - http://www.party107.com Rock 101.9 The Edge (Rock) - http://www.rock1019.net IRC: MIXXnet IRC Network - irc.mixxnet.net (Nick: MIXX941) signature.asc Description: OpenPGP digital signature
Re: Network Config Issue...
I'm setting up my NIC in fbsd 6 and I can't find where I saved my ISP's domain address. It used to be something like "westln01.mi.comcast.net" (without the quotes) but that doesn't work. I've tried some variations but nothing so far. Doesn't Comcast use DHCP to configure hosts? Does putting ifconfig_="DHCP" in your /etc/rc.conf work? Comcast was very unhelpful. Just keep saying over and over: "It's Comcastic..." :-) ~Dan ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
PAE not recognizing all RAM
Hi, all. I have a fairly beefy server (Dell PowerEdge 8450, 8-processor 700 Mhz Xeon, 32GB RAM) I'm testing with FreeBSD. I got a 6.0-RELEASE kernel compiled with both SMP and PAE (the only catch was that the hptmv driver breaks the compile with SMP, but that's OK as I don't need it), but for some reason the kernel is only seeing 3.5G of RAM or thereabouts, judging from what I see in dmesg anyway: CPU: Intel Pentium III Xeon (700.07-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6a1 Stepping = 1 Features=0x383fbff real memory = 3758096384 (3584 MB) avail memory = 3676594176 (3506 MB) FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs The memory line displayed in "top" reflects similar values. Is there some magic I need to do to make it see all the RAM? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: install freebsd with usb keyboard
I'm trying to install 5.4 with a usb keyboard. I saw the suggestion below on freebsd.org, however the keyboard doesn't work to allow me to select option 7. Any suggestions? If you can't use your USB keyboard at the Boot Menu (which is where the infamous "Option 7" is), then your BIOS doesn't support the USB keyboard. Can you enter your BIOS setup program using the USB keyboard? If not, you'll have to boot with a PS/2 keyboard, and install FreeBSD. Then, add the line hint.atkbd.0.flags="0x1" to your /boot/device.hints file. After that, you can remove the PS/2 keyboard and use the USB keyboard... ~Dan ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Removing packages
On Fri, 2 Dec 2005 17:51:16 -0500 Trey Sizemore <[EMAIL PROTECTED]> wrote: > I have OpenOffice 1.1.3 installed previously from packages. I have > recently installed OpenOffice 2.0 from ports. How do I go about: > > 1- removing the 1.1.3 package install - I know to use pkg_delete, but > can't seem to find the correct package name. pkg_info |grep -i "openoffice" .. doesn't help ? cd /usr/ports/editors/openoffice.org-1.1 ; make deinstall is also an idea -- grtjs, albi gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Removing packages
I have OpenOffice 1.1.3 installed previously from packages. I have recently installed OpenOffice 2.0 from ports. How do I go about: 1- removing the 1.1.3 package install - I know to use pkg_delete, but can't seem to find the correct package name. 2- having 2.0 show up in my KDE menu - I thought installing the port would have done this. Thanks. -- Cheers, Trey Dimensions will always be expressed in the least usable term. Velocity, for example, will be expressed in furlongs per fortnight. FreeBSD 5.4-STABLE i386 GENERIC 5:45PM up 10:18, 0 users, load averages: 0.05, 0.03, 0.00 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Network Config Issue...
I'm setting up my NIC in fbsd 6 and I can't find where I saved my ISP's domain address. It used to be something like "westln01.mi.comcast.net" (without the quotes) but that doesn't work. I've tried some variations but nothing so far. Comcast was very unhelpful. Does anyone know of a way to find that info? Thanks, Rob ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Gnome upgrade - screen lock no longer works
--On Friday, December 02, 2005 19:52:44 +0100 Hans Nieser <[EMAIL PROTECTED]> wrote: I don't see anything in the FAQ about D-BUS. One other thing. I now have two Screensaver selections under Desktop/Preferences. One has the old icon (screen with the red fire in front of it), and when I open that one, it says "The XScreenSaver daemon doesn't seem to be running on display ":0.0". Launch it now? If I click on OK, it starts up and the screensaver works, but screenlock still does not. The FAQ entry I was referring to is located at http://www.freebsd.org/gnome/docs/faq2.html#q25 More info. I can lock the screen from the Screensaver menu, and I can lock it from the commandline - xscreesaver-command -lock. I just can't lock it from the Gnome Desktop menu, and the screensaver daemon isn't being started automatically at loging, although it starts fine manually. I can probably figure it out from here after doing some reading. Thanks for the info. Paul Schmehl ([EMAIL PROTECTED]) Adjunct Information Security Officer University of Texas at Dallas AVIEN Founding Member http://www.utdallas.edu/ir/security/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Trouble upgrading ports collection
On Fri, Dec 02, 2005 at 07:34:58PM +0100, edward wrote: > > : undefined reference to `glXGetProcAddress' > xdriinfo.o(.text+0x5b): In function `main': > : undefined reference to `glXGetProcAddress' > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients. Hi, This has been discussed several times on the X11 list - try searching the archives at http://www.freebsd.org/cgi/search.cgi?words=glXGetProcAddress&max=25&sort=score&index=recent&source=freebsd-x11 I had the very same problem a couple of weeks ago, but can't now for the life of me remember now I fixed it... Using portmanager won't get you through this one - I use it in preference to portupgrade these days, and still had the same problem. HTH Dan -- Daniel Bye PGP Key: ftp://ftp.slightlystrange.org/pgpkey/dan.asc PGP Key fingerprint: 3B9D 8BBB EB03 BA83 5DB4 3B88 86FC F03A 90A1 BE8F _ ASCII ribbon campaign ( ) - against HTML, vCards and X - proprietary attachments in e-mail / \ pgpDhBytD4eZo.pgp Description: PGP signature
BUILD ERROR: From 5.4 to 6.0
Hi, I got this FreeBSD 5.4-STABLE box. I've followed UPGRADE, but still I get this error: -- >>> stage 2.3: build tools -- cd /usr/src; MAKEOBJDIRPREFIX=/usr/obj INSTALL="sh /usr/src/tools/install.sh" PATH=/usr/obj/usr/src/tmp/legacy/usr/sbin:/usr/obj/usr/src/tmp/legacy/usr/bin:/usr/obj/usr/src/tmp/legacy/usr/games:/sbin:/bin:/usr/sbin:/usr/bin WORLDTMP=/usr/obj/usr/src/tmp MAKEFLAGS="-m /usr/src/tools/build/mk -m /usr/src/share/mk" /usr/obj/usr/src/make.i386/make -f Makefile.inc1 DESTDIR= BOOTSTRAPPING=504100 -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS build-tools ===> bin/csh (obj,build-tools) grep 'ERR_' /usr/src/bin/csh/../../contrib/tcsh/sh.err.c | grep '^#define' >> sh.err.h cc -E -O2 -fno-strict-aliasing -pipe -I. -I/usr/src/bin/csh -I/usr/src/bin/csh/../../contrib/tcsh -D_PATH_TCSHELL='"/bin/csh"' -I/usr/obj/usr/src/tmp/legacy/usr/include /usr/src/bin/csh/../../contrib/tcsh/tc.const.c /usr/src/bin/csh/../../contrib/tcsh/sh.char.h /usr/src/bin/csh/config.h /usr/src/bin/csh/../../contrib/tcsh/config_f.h /usr/src/bin/csh/../../contrib/tcsh/sh.types.h sh.err.h -D_h_tc_const | grep 'Char STR' | sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | sort >> tc.const.h In file included from /usr/src/bin/csh/../../contrib/tcsh/sh.h:93, from /usr/src/bin/csh/../../contrib/tcsh/tc.const.c:33: /usr/include/wchar.h:33:18: cwchar: No such file or directory cc -o gethost -L/usr/obj/usr/src/tmp/legacy/usr/lib -O2 -fno-strict-aliasing -pipe -I. -I/usr/src/bin/csh -I/usr/src/bin/csh/../../contrib/tcsh -D_PATH_TCSHELL='"/bin/csh"' -I/usr/obj/usr/src/tmp/legacy/usr/include /usr/src/bin/csh/../../contrib/tcsh/gethost.c In file included from /usr/src/bin/csh/../../contrib/tcsh/sh.h:93, from /usr/src/bin/csh/../../contrib/tcsh/gethost.c:33: /usr/include/wchar.h:33:18: cwchar: No such file or directory In file included from /usr/src/bin/csh/../../contrib/tcsh/sh.h:93, from /usr/src/bin/csh/../../contrib/tcsh/gethost.c:33: /usr/include/wchar.h:35: error: syntax error before "std" In file included from /usr/src/bin/csh/../../contrib/tcsh/gethost.c:33: /usr/src/bin/csh/../../contrib/tcsh/sh.h:97: error: syntax error before "eChar" /usr/src/bin/csh/../../contrib/tcsh/sh.h:97: warning: data definition has no type or storage class In file included from /usr/src/bin/csh/../../contrib/tcsh/sh.h:1304, from /usr/src/bin/csh/../../contrib/tcsh/gethost.c:33: /usr/src/bin/csh/../../contrib/tcsh/sh.decls.h:221: error: syntax error before "readc" /usr/src/bin/csh/../../contrib/tcsh/sh.decls.h:221: warning: data definition has no type or storage class *** Error code 1 Stop in /usr/src/bin/csh. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Can anybody help me? P.S. Please include my e-mail in the reply, I am not yet registered with the questions mailinglist. Thank you! -- Fafa Hafiz Krantz Research Designer @ http://www.bleed.com -- ___ Play 100s of games for FREE! http://games.mail.com/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Troubleshooting a lockup
I run a headless machine that has sporadic lockup problems, and I need some advice on what I can do to gather enough information to give me some idea of what's causing it. The machine acts as a router, DNS, web server, mail server, nfs server, firewall, and lots of other services. These problems started occurring after I upgraded from FreeBSD 5.4 to 6.0 and installed a secondary hard drive controller. Before that it ran perfectly for months at a time. That's a lot of variables to rule out. When the lockups occur, both network interfaces just plain die. Also, if I bring over a monitor and plug it in, I can't get a video signal, even if I tap the keyboard to wake it up. The lights on the keyboard still work, so I don't believe the box is completely frozen. The only option I have is to hit the reset button. Inspection of /var/log/messages never gives me any clues, except for one time I saw one message about my rl0 interface getting a watchdog timeout, but that was only one time and I can't imagine why a failure on one network interface would cause both network interfaces to stop responding. Inspection of the httpd logs just gives me an idea of about what time the lockup occurred, since there's no activity after that point. I don't know of any other log files that might be of assistance. I thought about trying to configure a dump device, but I don't believe the machine is panicing, except perhaps when I hit the reset button. I may try to figure out some way to disable the power management on the video, hook up a monitor, and leave "top" running on it to see if that gives me any clues. I plan on googling for "serial terminal" this afternoon. Any other suggestions? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
install freebsd with usb keyboard
I'm trying to install 5.4 with a usb keyboard. I saw the suggestion below on freebsd.org, however the keyboard doesn't work to allow me to select option 7. Any suggestions? Don ***During the boot process* before you ever get to sysinstall, when the daemon shows up on the screen and you're given a menu with several options, if you look closely, option seven (7) must be chosen to use a usb keyboard **during the install**. If you're waiting until the sysinstall appears, that's way too late. You need to chose option 7 before the kernel even loads, almost immediately after the system boots. -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.362 / Virus Database: 267.13.11/191 - Release Date: 12/2/2005 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
SATA card recommendation
I am looking for a SATA PCI card, don't need RAID - any recommendations? Janos Dohanics ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Something like Breeze for freebsd
Hi I have recently been taking a look at Macromedia's Breeze product and it seems to me a shame there is not an open source product that has the ability to lever flash interactive applications to provide an open source environment for delivering similar functionality. It seems that the Breeze "server" provides a back door channel for marketing of microsofts sql server and the majority of the remaining functionality could be delivered via an apache module. In view of the enormous benefits that Macromedia have gained from having their major product flash generously supported by the open sourtce community. I really feel the way they have structured their Breeze product line is a slap in the face to everyone who has worked to make flash adoptable by the open source community. I just wonder if anyone on this list has taken a look at the Breeze product range. I would dearly love to see an open source answer to Macromedia's "Breeze server" and its tool set. Its sole reliance on sql and its failure to provide a mysql/postgres interface could pehaps be offset by one of the tools that convert sql calls to mysql. I have no idea about how the remainder of the tool set could be replicated. david -- 40 yrs navigating and computing in blue waters. English Owner & Captain of British Registered 60' bluewater Ketch S/V Taurus. Currently in San Diego, CA. Sailing bound for Europe via Panama Canal after completing engineroom refit. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Sound device on mobo (MSI MS-7184) not working/supported by amd64?
I just shortly received my ordered Compaq Presario SR1638NX (information: http://h10025.www1.hp.com/ewfrf/wc/document?dlc=en&lc=en&product=1146755&lang=en&cc=us&docname=c00378480# ). The machine has a MSI MS-7184 motherboard featuring "Realtek ALC658C 6-channel CODEC chipset" as its onboard audio. When I try to load a sound driver (ie. 'kldload snd_driver') I get the following error: Dec 2 01:11:03 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:03 zog kernel: sio1: port may not be enabled Dec 2 01:11:05 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:05 zog kernel: sio1: port may not be enabled Dec 2 01:11:05 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:05 zog kernel: sio1: port may not be enabled Dec 2 01:11:05 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:05 zog kernel: sio1: port may not be enabled Dec 2 01:11:06 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:06 zog kernel: sio1: port may not be enabled Dec 2 01:11:06 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:06 zog kernel: sio1: port may not be enabled Dec 2 01:11:08 zog kernel: sio1: configured irq 3 not in bitmap of probed irqs 0 Dec 2 01:11:08 zog kernel: sio1: port may not be enabled I haven't really done much to the default install yet (such as build a kernel or tweak any config other than make.conf) other than adding Xorg and attempting to run XFCE4. Can anyone help me decipher whether there may be something I can do or if this motherboard's onboard audio is simply not supported by FreeBSD amd64? I have little experience having to fiddle with hardware on FreeBSD as I've never had any real problems with things being supported (though this is the first time I've used FreeBSD on a non-i386 platform). Here's the boot message if it helps: Dec 2 13:19:33 zog kernel: Copyright (c) 1992-2005 The FreeBSD Project. Dec 2 13:19:33 zog kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Dec 2 13:19:33 zog kernel: The Regents of the University of California. All rights reserved. Dec 2 13:19:33 zog kernel: FreeBSD 6.0-RELEASE #0: Wed Nov 2 19:07:38 UTC 2005 Dec 2 13:19:33 zog kernel: [EMAIL PROTECTED] :/usr/obj/usr/src/sys/GENERIC Dec 2 13:19:33 zog kernel: ACPI APIC Table: Dec 2 13:19:33 zog kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Dec 2 13:19:33 zog kernel: CPU: AMD Athlon(tm) 64 Processor 3400+ ( 2188.80-MHz K8-class CPU) Dec 2 13:19:33 zog kernel: Origin = "AuthenticAMD" Id = 0x20ff0 Stepping = 0 Dec 2 13:19:33 zog kernel: Features=0x78bfbff Dec 2 13:19:33 zog kernel: Features2=0x1 Dec 2 13:19:33 zog kernel: AMD Features=0xe2500800,LM,3DNow+,3DNow> Dec 2 13:19:33 zog kernel: real memory = 1005518848 (958 MB) Dec 2 13:19:33 zog kernel: avail memory = 959365120 (914 MB) Dec 2 13:19:33 zog kernel: ioapic0 irqs 0-23 on motherboard Dec 2 13:19:33 zog kernel: acpi0: on motherboard Dec 2 13:19:33 zog kernel: acpi0: Overriding SCI Interrupt from IRQ 9 to IRQ 21 Dec 2 13:19:33 zog kernel: acpi0: Power Button (fixed) Dec 2 13:19:33 zog kernel: pci_link0: irq 0 on acpi0 Dec 2 13:19:33 zog kernel: pci_link1: irq 0 on acpi0 Dec 2 13:19:33 zog kernel: pci_link2: irq 0 on acpi0 Dec 2 13:19:33 zog kernel: pci_link3: irq 0 on acpi0 Dec 2 13:19:33 zog kernel: pci_link4: irq 10 on acpi0 Dec 2 13:19:33 zog kernel: pci_link5: irq 3 on acpi0 Dec 2 13:19:33 zog kernel: pci_link6: irq 11 on acpi0 Dec 2 13:19:33 zog kernel: pci_link7: irq 0 on acpi0 Dec 2 13:19:33 zog kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 Dec 2 13:19:33 zog kernel: acpi_timer0: <32-bit timer at 3.579545MHz> port 0x4008-0x400b on acpi0 Dec 2 13:19:33 zog kernel: cpu0: on acpi0 Dec 2 13:19:33 zog kernel: acpi_throttle0: on cpu0 Dec 2 13:19:33 zog kernel: acpi_button0: on acpi0 Dec 2 13:19:33 zog kernel: pcib0: port 0xcf8-0xcff on acpi0 Dec 2 13:19:33 zog kernel: pci0: on pcib0 Dec 2 13:19:33 zog kernel: pcib1: at device 1.0 on pci0 Dec 2 13:19:33 zog kernel: pci1: on pcib1 Dec 2 13:19:33 zog kernel: pci1: at device 5.0 (no driver attached) Dec 2 13:19:33 zog kernel: atapci0: port 0xfe00-0xfe07,0xfd00-0xfd03,0xfc00-0xfc07,0xfb00-0xfb03,0xfa00-0xfa0f mem 0xfe02f000-0xfe02f1ff irq 22 at device 18.0 on pci0 Dec 2 13:19:33 zog kernel: ata2: on atapci0 Dec 2 13:19:33 zog kernel: ata3: on atapci0 Dec 2 13:19:33 zog kernel: ohci0: mem 0xfe02e000-0xfe02efff at device 19.0 on pci0 Dec 2 13:19:33 zog kernel: ohci0: [GIANT-LOCKED] Dec 2 13:19:33 zog kernel: usb0: OHCI version 1.0, legacy support Dec 2 13:19:33 zog kernel: usb0: on ohci0 Dec 2 13:19:33 zog kernel: usb0: USB revision 1.0 Dec 2 13:19:33 zog kernel: uhub0: (0x1002) OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 Dec 2 13:19:33 zog kernel: uhub0: 4 ports with 4 removable, self powered Dec 2 13:19:33 zog kernel:
Can't open audio device /dev/dsp: Device busy
Hi, Running a pretty current 4.11-STABLE, my pcm is toshiba# dmesg|grep pcm Preloaded elf module "snd_pcm.ko" at 0xc05f81dc. pcm0: port 0xfebc-0xfebf,0xfec0-0xfeff mem 0xefdf-0xefdf7fff irq 11 at device 12.0 on pci0 pcm0: and sndstat toshiba# cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at memory 0xefdf irq 11 (4p/2r/0v channels duplex) When I first boot things are fine. I start GAIM with "Automatic" and thats fine. But at some point it just stops working for GAIM and anything else like mplayerxp. I start to get "Can't open audio device /dev/dsp: Device busy" but with fstat I get : toshiba# fstat|grep dsp toshiba# What do I do?? Thanks, Tuc ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
How to upgrade gnome/glib/gt on 4.11
Hi, I was looking to upgrade using the : http://www.marcuscom.com/downloads/gnome_upgrade212.sh but it tells me that 4.11-STABLE isn't supported. Is there a procedure to do the upgrade? Thanks, Tuc ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Gnome upgrade - screen lock no longer works
Paul Schmehl wrote: --On Friday, December 02, 2005 18:55:42 +0100 Hans Nieser <[EMAIL PROTECTED]> wrote: Paul Schmehl wrote: I just upgraded Gnome to 2.12 (FreeBSD 5.4) using the gnome_upgrade script. Now screen locking is no longer working, and I'm not seeing anything in the logs to explain it. Anyone have any ideas how to troubleshoot this? Logging out and back in constantly is a PITA. I vaguely remember getting something like that and it had something to do with D-BUS, have you enabled D-BUS? (Instructions are in the FAQ) I don't see anything in the FAQ about D-BUS. One other thing. I now have two Screensaver selections under Desktop/Preferences. One has the old icon (screen with the red fire in front of it), and when I open that one, it says "The XScreenSaver daemon doesn't seem to be running on display ":0.0". Launch it now? If I click on OK, it starts up and the screensaver works, but screenlock still does not. The FAQ entry I was referring to is located at http://www.freebsd.org/gnome/docs/faq2.html#q25 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Trouble upgrading ports collection
On Friday 02 December 2005 10:34, edward wrote: > Hi all, > I'm having a hard time upgrading my ports. I recently did a > # cvsup -g -L 2 ports-supfile > then did a > # portupgrade -ar0 > which took care of a good share of my ports. But quite a few were > skipped or failed. There wasn't much concerning these particular ports > in /usr/ports/UPDATING. I did a pkgdb -F and tried my luck with > portupgrade -ar0 again. A few ports were then successfully updated. I > updated some others manually with a make desinstall / make reinstall > sequence, but I'm still stuck with 3 ports that refuse to upgrade : > > ** Listing the failed packages (*:skipped / !:failed) > ! graphics/libpixman (libpixman-0.1.6) (invalid package name) > ! multimedia/linux-realplayer (linux-realplayer-10.0.5) > (uninstall error) > * www/linuxpluginwrapper (linuxpluginwrapper-20050910) > ! x11/kdelibs3 (kdelibs-3.4.2_1)(linker error) > * x11-wm/kompmgr (kdebase-kompmgr-3.4.2) > * graphics/kdegraphics3 (kdegraphics-3.4.2_1) > * x11/kdebase3 (kdebase-3.4.2_2) > * x11-themes/kdeartwork3 (kdeartwork-3.4.2) > * sysutils/k3b (k3b-0.11.14) > * devel/kdesdk3 (kdesdk-3.4.2) > * www/kdewebdev (kdewebdev-3.4.2,2) > * deskutils/superkaramba (superkaramba-0.36_1) > * x11-themes/gtk-qt-engine (gtk-qt-engine-0.6_2) > * java/eclipse (eclipse-3.1_3) > * net/azureus (azureus-2.3.0.4_1) > ---> Packages processed: 0 done, 272 ignored, 12 skipped and 3 failed > > > Apparently, xorg-clients is needed. I deinstalled it but the reinstall > command gives an error. Tried portinstall xorg-clients, I get the > > following,at the end of the install/compile sequence : > : undefined reference to `glXGetProcAddress' > > xdriinfo.o(.text+0x5b): In function `main': > : undefined reference to `glXGetProcAddress' > > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portinstall52875.0 make > ** Fix the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! x11/xorg-clients (linker error) > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > # > Any ideas ? (I realise this all seems pretty confused. Sorry, bear with > me;-) > Edward try sysutils/portmanager run it as portmanager -u -l and if any ports fail to upgrade send me the log and I will help you ot the best I can. -Mike ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD 4.6-RELEASE, anyone have or know of where I can get an ISO ?
In the last episode (Dec 02), Nathan Vidican said: > Have an old(er) system, being used in production to a point where I > cannot afford to take it offline and re-install, but I need some of > the base (crypto) libraries off the original release cd... Any ideas > where I may find an archived ISO image? Remember long time ako talk > about posting an archive server, but don't know what if anything ever > happened with that? Need to find 4.6-RELEASE in specific myself, > all-else fails I'm just going to have to replace the box I guess - > but that kinda sucks. http://mirrorlist.freebsd.org/ -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Trouble upgrading ports collection
Hi all, I'm having a hard time upgrading my ports. I recently did a # cvsup -g -L 2 ports-supfile then did a # portupgrade -ar0 which took care of a good share of my ports. But quite a few were skipped or failed. There wasn't much concerning these particular ports in /usr/ports/UPDATING. I did a pkgdb -F and tried my luck with portupgrade -ar0 again. A few ports were then successfully updated. I updated some others manually with a make desinstall / make reinstall sequence, but I'm still stuck with 3 ports that refuse to upgrade : ** Listing the failed packages (*:skipped / !:failed) ! graphics/libpixman (libpixman-0.1.6) (invalid package name) ! multimedia/linux-realplayer (linux-realplayer-10.0.5) (uninstall error) * www/linuxpluginwrapper (linuxpluginwrapper-20050910) ! x11/kdelibs3 (kdelibs-3.4.2_1)(linker error) * x11-wm/kompmgr (kdebase-kompmgr-3.4.2) * graphics/kdegraphics3 (kdegraphics-3.4.2_1) * x11/kdebase3 (kdebase-3.4.2_2) * x11-themes/kdeartwork3 (kdeartwork-3.4.2) * sysutils/k3b (k3b-0.11.14) * devel/kdesdk3 (kdesdk-3.4.2) * www/kdewebdev (kdewebdev-3.4.2,2) * deskutils/superkaramba (superkaramba-0.36_1) * x11-themes/gtk-qt-engine (gtk-qt-engine-0.6_2) * java/eclipse (eclipse-3.1_3) * net/azureus (azureus-2.3.0.4_1) ---> Packages processed: 0 done, 272 ignored, 12 skipped and 3 failed Apparently, xorg-clients is needed. I deinstalled it but the reinstall command gives an error. Tried portinstall xorg-clients, I get the following,at the end of the install/compile sequence : : undefined reference to `glXGetProcAddress' xdriinfo.o(.text+0x5b): In function `main': : undefined reference to `glXGetProcAddress' *** Error code 1 Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. *** Error code 1 Stop in /usr/ports/x11/xorg-clients/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/xorg-clients. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall52875.0 make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! x11/xorg-clients (linker error) ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed # Any ideas ? (I realise this all seems pretty confused. Sorry, bear with me;-) Edward ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD 4.6-RELEASE, anyone have or know of where I can get an ISO ?
Have an old(er) system, being used in production to a point where I cannot afford to take it offline and re-install, but I need some of the base (crypto) libraries off the original release cd... Any ideas where I may find an archived ISO image? Remember long time ako talk about posting an archive server, but don't know what if anything ever happened with that? Need to find 4.6-RELEASE in specific myself, all-else fails I'm just going to have to replace the box I guess - but that kinda sucks. -- Nathan Vidican [EMAIL PROTECTED] Windsor Match Plate & Tool Ltd. http://www.wmptl.com/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Gnome upgrade - screen lock no longer works
--On Friday, December 02, 2005 18:55:42 +0100 Hans Nieser <[EMAIL PROTECTED]> wrote: Paul Schmehl wrote: I just upgraded Gnome to 2.12 (FreeBSD 5.4) using the gnome_upgrade script. Now screen locking is no longer working, and I'm not seeing anything in the logs to explain it. Anyone have any ideas how to troubleshoot this? Logging out and back in constantly is a PITA. I vaguely remember getting something like that and it had something to do with D-BUS, have you enabled D-BUS? (Instructions are in the FAQ) I don't see anything in the FAQ about D-BUS. One other thing. I now have two Screensaver selections under Desktop/Preferences. One has the old icon (screen with the red fire in front of it), and when I open that one, it says "The XScreenSaver daemon doesn't seem to be running on display ":0.0". Launch it now? If I click on OK, it starts up and the screensaver works, but screenlock still does not. Paul Schmehl ([EMAIL PROTECTED]) Adjunct Information Security Officer University of Texas at Dallas AVIEN Founding Member http://www.utdallas.edu/ir/security/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: upgrading all installed packages problem.
On Friday 02 December 2005 03:51 am, Mehmet Fatih AKBULUT wrote: > hi all. > i tried to run #portupgrade -arR but got the error below: > > > [EMAIL PROTECTED] portupgrade -arR > [Updating the pkgdb in /var/db/pkg ... - 328 > packages found (-7 +128) > (...)/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:466: [BUG] > Segmentation fault > ruby 1.8.2 (2004-12-25) [i386-freebsd5] > > Abort trap (core dumped) > [EMAIL PROTECTED] > > how can i fix this error ? > any suggestion ? You need to update portupgrade and the ruby dependencies and then force update the databases. I have hit this once in awhile and I have force built each one. I think there were cases where I manually had to build ruby to get around the database problem that is killing it. You can force update the databases with "portsdb -fu" and "pkgdb -fF". I do as little as possible until it works and each solution was different. Kent > > Regards. > Bye > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "[EMAIL PROTECTED]" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
Marco Calviani wrote: Hi list, 2005/12/2, Bruno Ducrot <[EMAIL PROTECTED]>: I don't see why you can't run powerd more frequently, I do.. Unless your ACPI has a problem that means the transition is slow. I'm sure this could not be done under Linux without a lot of problems (it is required to use the /proc things and it's too slow in that case). I can't imagine that doing 5 (or even 50) syscalls a second is a big CPU load unless there is a specific problem with sysctls or the cpufreq infrastructure. If that's possible being not so intrusive with, say 50 syscalls under FreeBSD, then all I said above is indeed stupid crap. I run powerd like this -> /usr/sbin/powerd -i 90 -r 30 -a adaptive -b adaptive -n adaptive -p 200 Well, i've tried decreasing the polling interval, but there is an increased powerd cpu load: at 100ms polling interval the cpu load is to an astonishing 20% circa, which i think it's too much for a normal use. The sampling rate with ondemand governor in linux kernel is 10ms but cpufreqd is at 0.6% on average cpu load. powerd is not intended to do high speed polling. If you do that, your system will almost never be idle and so we can't save power via Cx. We don't need high speed sampling right now, we need a predictive algorithm. So until someone implements this, it's moot. -- Nate ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Gnome upgrade - screen lock no longer works
Paul Schmehl wrote: I just upgraded Gnome to 2.12 (FreeBSD 5.4) using the gnome_upgrade script. Now screen locking is no longer working, and I'm not seeing anything in the logs to explain it. Anyone have any ideas how to troubleshoot this? Logging out and back in constantly is a PITA. I vaguely remember getting something like that and it had something to do with D-BUS, have you enabled D-BUS? (Instructions are in the FAQ) ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Gnome upgrade - screen lock no longer works
I just upgraded Gnome to 2.12 (FreeBSD 5.4) using the gnome_upgrade script. Now screen locking is no longer working, and I'm not seeing anything in the logs to explain it. Anyone have any ideas how to troubleshoot this? Logging out and back in constantly is a PITA. Paul Schmehl ([EMAIL PROTECTED]) Adjunct Information Security Officer University of Texas at Dallas AVIEN Founding Member http://www.utdallas.edu/ir/security/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: web based password control?
i'm not sure if it does, but check into usermin On Fri, 2005-12-02 at 11:28 -0500, Louis J. LeBlanc wrote: > Hey folks. > > This is probably going to meet with a good number of warnings against this > course of action, but I'm looking for a web based password utility. > > I have a couple users that do not have access to set their passwords from > outside my network (remote logins aren't permitted for most accounts). > > Of course, I'm going to seriously limit the accessibility of the > application, and make it altogether unavailable until it's actually needed > and then only with a one time password on a secure connection. > > Still, I'd like them to be able to set their passwords for sasl and shell > accounts (sasl is used for IMAPS, which is allowed externally, shell > passwords are used for IMAP, allowed only within the network by the > webmail app, which is only accessible on a secure connection anyway). > > I could probably whip up a mod_perl page easily enough, but before I > bother, is there a port that will do this? Preferably with proper > password confirmations prior to changing them. > > I've seen a couple (www/chpasswd was the closest) that suggested similar > behavior, but I'm not sure any covered exactly my needs. > > TIA > Lou ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: How can I get 4.9-ISO-IMAGES-i386
On 12/2/05, YE ZHIJIE <[EMAIL PROTECTED]> wrote: > Can you give me an answer,Thanks! > > -- > 叶智杰 > > ___ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "[EMAIL PROTECTED]" > > [http] http://www.linorg.sc.usp.br/iso/FreeBSD/4.9/ [bit torrent] http://www.nuxo.net/download.php?cat=FreeBSD&page=1 MD5 (4.9-i386-disc1.iso) = 9195be15a4c8c54a6a6a23272ddacaae MD5 (4.9-i386-disc2.iso) = 51d28c35308cc916b9a9bfcacb3146b8 MD5 (4.9-i386-mini.iso) = 2635f02aebce8e1c2b83d1acdbbcb2ea Regards, David ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
"The Complete FreeBSD": errata and addenda
The trouble with books is that you can't update them the way you can a web page or any other online documentation. The result is that most leading edge computer books are out of date almost before they are printed. Unfortunately, The Complete FreeBSD, published by O'Reilly, is no exception. Inevitably, a number of bugs and changes have surfaced. "The Complete FreeBSD" has been through a total of five editions, including its predecessor "Installing and Running FreeBSD". Two of these have been reprinted with corrections. I maintain a series of errata pages. Start at http://www.lemis.com/errata-4.html to find out how to get the errata information. Have you found a problem with the book, or maybe something confusing? Please let me know: I'm constantly updating it. Greg ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
How to get best results from FreeBSD-questions
How to get the best results from FreeBSD questions. === Last update $Date: 2005/08/10 02:21:44 $ This is a regular posting to the FreeBSD questions mailing list. If you got it in answer to a message you sent, it means that the sender thinks that at least one of the following things was wrong with your message: - You left out a subject line, or the subject line was not appropriate. - You formatted it in such a way that it was difficult to read. - You asked more than one unrelated question in one message. - You sent out a message with an incorrect date, time or time zone. - You sent out the same message more than once. - You sent an 'unsubscribe' message to FreeBSD-questions. If you have done any of these things, there is a good chance that you will get more than one copy of this message from different people. Read on, and your next message will be more successful. This document is also available on the web at http://www.lemis.com/questions.html. = Contents: I:Introduction II: How to unsubscribe from FreeBSD-questions III: Should I ask -questions or -hackers? IV: How to submit a question to FreeBSD-questions V:How to answer a question to FreeBSD-questions I: Introduction === This is a regular posting aimed to help both those seeking advice from FreeBSD-questions (the "newcomers"), and also those who answer the questions (the "hackers"). Note that the term "hacker" has nothing to do with breaking into other people's computers. The correct term for the latter activity is "cracker", but the popular press hasn't found out yet. The FreeBSD hackers disapprove strongly of cracking security, and have nothing to do with it. In the past, there has been some friction which stems from the different viewpoints of the two groups. The newcomers accused the hackers of being arrogant, stuck-up, and unhelpful, while the hackers accused the newcomers of being stupid, unable to read plain English, and expecting everything to be handed to them on a silver platter. Of course, there's an element of truth in both these claims, but for the most part these viewpoints come from a sense of frustration. In this document, I'd like to do something to relieve this frustration and help everybody get better results from FreeBSD-questions. In the following section, I recommend how to submit a question; after that, we'll look at how to answer one. II: How to unsubscribe from FreeBSD-questions == When you subscribed to FreeBSD-questions, you got a welcome message from [EMAIL PROTECTED] In this message, amongst other things, it told you how to unsubscribe. Here's a typical message: Welcome to the freebsd-questions@freebsd.org mailing list! If you ever want to unsubscribe or change your options (eg, switch to or from digest mode, change your password, etc.), visit your subscription page at: http://lists.freebsd.org/mailman/options/freebsd-questions/[EMAIL PROTECTED] (obviously, substitute your mail address for "[EMAIL PROTECTED]"). You can also make such adjustments via email by sending a message to: [EMAIL PROTECTED] with the word 'help' in the subject or body (don't include the quotes), and you will get back a message with instructions. You must know your password to change your options (including changing the password, itself) or to unsubscribe. Normally, Mailman will remind you of your freebsd.org mailing list passwords once every month, although you can disable this if you prefer. This reminder will also include instructions on how to unsubscribe or change your account options. There is also a button on your options page that will email your current password to you. Here's the general information for the list you've subscribed to, in case you don't already have it: FREEBSD-QUESTIONS User questions This is the mailing list for questions about FreeBSD. You should not send "how to" questions to the technical lists unless you consider the question to be pretty technical. Normally, unsubscribing is even simpler than the message suggests: you don't need to specify your mail ID unless it is different from the one which you specified when you subscribed. If Majordomo replies and tells you (incorrectly) that you're not on the list, this may mean one of two things: 1. You have changed your mail ID since you subscribed. That's where keeping the original message from majordomo comes in handy. For example, the sample message above shows my mail ID as [EMAIL PROTECTED] Since then, I have changed it to [EMAIL PROTECTED] If I were to try to remove [EMAIL PROTECTED] from the list, it would fail: I would have to specify the name with which I joined. 2. You're subscribed to a mailing list which is subscribed to Fr
RE: Proposed license for IETF Contributions
>-Original Message- >From: Simon Josefsson [mailto:[EMAIL PROTECTED] >Sent: Wednesday, November 30, 2005 7:29 AM >To: Ted Mittelstaedt >Cc: freebsd-questions@freebsd.org >Subject: Re: Proposed license for IETF Contributions > > >"Ted Mittelstaedt" <[EMAIL PROTECTED]> writes: > >>>Please provide me with a reference for this. >>> >> >> >> http://www.copyright.gov/circs/circ1.html#wnp >> >> Under the subheading: >> >> WHAT IS NOT PROTECTED BY COPYRIGHT? >> >> "Works consisting entirely of information that is common property and >> containing no original authorship" > >It continues: > > (for example: standard calendars, height and weight charts, tape > measures and rulers, and lists or tables taken from public > documents or other common sources) > >IETF documents are more technical than that, and they are usually the >first instance in history where that precise technical invention is >described. That material does not qualify as common property. > Duh, that's why the preamble of the material must specifiy it's common property. >> In short, all you have to do is have the author of whatever >IETF standard >> simply declare >> his ENTIRE standard description as common property, and instantly it's >> not copyrightable, >> thus you now have no issue. > >Except that I believe some IETF authors would not agree to putting >their work into the public domain. That is the central value of IETF standards. If the IETF standard is patented or copyrighted and the author retains the copyright then nobody can use it without the fear that the copyright holder might someday levy license fees, or withdraw his or her copyrighted material from the IETF standards. > I'm trying to create a license >that I believe would be acceptable to IETF contributors, and make it >aligned with BSD/GPL licenses. > If it is aligned with BSD/GPL then it is effectively in the public domain, with the exception that since copyright on it still exists, a court could someday make a ruling that would effect that. The legal status of "public domain" or "common property" has already been established. The legal status of stuff like GPL's viral licensing has not been established. BSD licensing is a bit more firmly established but keep in mind the actual BSD license gives copyright rights to the Regents of the University of California, Berkeley, NOT to the author (like the GPL does) so ultimately it's no different than any other copyright except that there's a gentlemen's agreement that UCB is never going to modify the copyright's licensing terms to be other than free. If you write a license that does not address who owns copyright, but tries to force the material under it to be open, you have created a GPL-style license. The problem with this is that the original owner and his heirs still hold copyright on the material and at some point could decide to withdraw their copyright from the GPL-licensed materials, at that point they might be able to get a court to invalidate the GPL-style-licensed material that is out there. If you write a license that makes copyright rights be held by IETF then you have created a BSD-style license. In that case the community is dependent on the IETF continuing to be a good copyright steward (as long as the copyright rights exist) just as the community is dependent on UCB being a good copyright steward. If you write a license that declares the material in the IETF standard to be public domain, then it now becomes uncopyrightable, and no matter what the IETF or original authors may decide to do in the future, none of them can impose licensing fees. Simon, the entire reason this whole thing is becoming a problem now is that for years and years, the accepted practice in the industry was when a company wrote an IETF standard, it was generally understood that that standard was in the public domain, and that anyone could use it without having to pay licensing fees. Then a few years ago when IETF standards suddenly became very important, companies looked at them and realized that under the copyright laws, since the company (like Microsoft or Cisco or whoever) held copyright, that they could impose licensing fees or restrictions on use of the IETF standard. The IETF is knee-jerking a response here (assuming you yourself are affiliated with them in any way, and not just blowing air out your ass for an interesting discussion) by trying to be all things to all people, you want to appease companies that look on their standards efforts as potential future sources of revenue (or future ways to control the market) and get them to put their stuff into an RFC, and you want to appease the users of the RFC standards and assure them that yes, the IETF standards process will protect them from the big bad companies that are either trying to get money out of them or otherwise control them. What you don't understand is you can't do this. The goals are incompatible. IETF standards users cannot tolerate a scrap of inte
Re: deamon, priority
> Efren Bravo wrote: > > Hi, > > > > How can I set priority to start deamons when > > freebsd boots? > > > > mysql is starting first than jabberd and it > write > > this log message. > > > > Thu Dec 1 17:22:03 2005 [error] mysql: > > connection to database failed: Can't connect > to > > local MySQL server through socket > > '/tmp/mysql.sock' (2) > > I *think* (because I'm no expert on rcNG) > jabberd should have "# REQUIRE: > mysql" in it's rc.d script, then it should be > taken care off. > I did it but it doesn't work. When freebsd boots, it shows this message: "local package initialization:REQUIRE:: not found" Where can I find a book to learn about rcNG or at least examples about it? Thanks... Efren Bravo. __ Renovamos el Correo Yahoo! Nuevos servicios, más seguridad http://correo.yahoo.es ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
mkisofs on 5.4
I'm running FBSD 5.4 and notice that the date/time stamps on files burned to DVD using growisofs() are being reported incorrectly after mounting the DVD and using ls() or stat(). On Dec 2, 2005 at about 10:30am, I used growisofs() to burn a DVD (took less than a minute to finish). When I mount the DVD and run ls() I see a date of Dec 1, 20:11. Since the OS is reporting the date/time correctly using UFS2. Is this a known bug? I couldn't find any info in the man page or web about it. Can anyone reproduce this? Thanks Jon ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
web based password control?
Hey folks. This is probably going to meet with a good number of warnings against this course of action, but I'm looking for a web based password utility. I have a couple users that do not have access to set their passwords from outside my network (remote logins aren't permitted for most accounts). Of course, I'm going to seriously limit the accessibility of the application, and make it altogether unavailable until it's actually needed and then only with a one time password on a secure connection. Still, I'd like them to be able to set their passwords for sasl and shell accounts (sasl is used for IMAPS, which is allowed externally, shell passwords are used for IMAP, allowed only within the network by the webmail app, which is only accessible on a secure connection anyway). I could probably whip up a mod_perl page easily enough, but before I bother, is there a port that will do this? Preferably with proper password confirmations prior to changing them. I've seen a couple (www/chpasswd was the closest) that suggested similar behavior, but I'm not sure any covered exactly my needs. TIA Lou -- Louis LeBlanc [EMAIL PROTECTED] Fully Funded Hobbyist, KeySlapper Extrordinaire :þ http://www.keyslapper.net Ô¿Ô¬ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Fwd: Re: NFS, FreeBSD, lock and SVN
On Fri, 2 Dec 2005 15:25:16 +0100 dick hoogendijk <[EMAIL PROTECTED]> wrote: > From: Chronos <[EMAIL PROTECTED]> > Check your /etc/hosts.allow (tcpwrappers) files on your servers and > clients, people. rpcbind MUST have the local subnet (represented by a > full IP and netmask) listed as allow, or rpc.lockd will fail at boot > with the message: RPC: Program not registered. This is on both the > client and the server. So, the next rule does it: ALL : 192.168.11.1/24 : allow will give acces from all machines on my local network? Or do I need to specify them seperately? -- dick -- http://nagual.st/ -- PGP/GnuPG key: F86289CE ++ Running FreeBSD 6.0 ++ The Power to Serve ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Uptimes, autoreboots, and package upgrades
N.J. Thomas wrote: * Louis J. LeBlanc <[EMAIL PROTECTED]> [2005-12-02 09:33:44 -0500]: So, I know restarting is important on occasion, but my real questions are: Does anyone use a crontab reboot to make sure their system(s) get a regular fresh start? If so, how often - weekly, montly, bi-monthly? I think system upgrades should always be done manually, since any change could potentially corrupt an otherwise perfectly running machine. Manually, one can do a quick sanity check to make sure the upgrade went okay, and back out if it didn't. I would agree with that; any significant FreeBSD update should minimally be tested carefully on a reference machine. If that works out well enough then one might have some level of comfort for automating update deployments from the reference machine to comparable production platforms. With of course the first automated phase being the taking of a file system snapshot and a dump. re: update frequency, I tried to be aggressive about this for a time but ran into the OP's frustration about things not always working out too well. Nowadays I only update ports when there's a version change that I am sure provides significant added value, or when portaudit starts whining about something. IIRC, on Windows machines the default setting is to automatically download and install OS updates, and this has only caused problems for everyone involved. I don't know any moderately competent Windows user who doesn't turn this feature off right away. I used to feel that way too, but around here we have had a very long track record on about 850 Win boxes of having nearly zero problems with their updates. It's not just luck. When folks have problems it often seems related to customizations made to their systems, particularly with regard to firewall, NTFS or registry ACL hardening. This is not at all surprising -- compare that to a FAQ re: FreeBSD upgrade failure where the answer is "looks like you've got the immutable flag set". Ain't security swell? ;) On Windows servers we turn off automated installation (reboot timing and change management being of moderate importance). On clients, we usually push out updates just as fast as we can. -- Greg Barniskis, Computer Systems Integrator South Central Library System (SCLS) Library Interchange Network (LINK) , (608) 266-6348 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: pkg_add of CVSup errors when looking for dependencies
On Friday 02 December 2005 09:06, Kris Kennaway wrote: > On Fri, Dec 02, 2005 at 12:05:11AM -0800, Jose Borquez wrote: > > I am attempting to install the cvsup package I downloaded using pkg_add > > -r cvsup-without-gui-16.1h_2.tbz, but I keep getting the following error: > > > > Error: FTP Unable to get > > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/ > >cvsup-without-gui-16.1h_2.tbz: File unavailable (e.g., file not found, no > > access) > > pkg_add: unable to fetch > > 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest > >/cvsup-without-gui-16.1h_2.tbz' by URL > > > > It looks like the default link that cvsup attempts to look for > > dependencies is incorrect. How can I specify an alternate link for > > cvsup to use? > > No, your command was incorrect: you don't specify a version with > pkg_add -r, you just do pkg_add -r cvsup-without-gui and it will give > you whatever version is in the package tree. The question is a bit ambiguous, but if you are trying do install a package you have already downloaded, don't use the -r option. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Java error.
On 12/2/05, Mehmet Fatih AKBULUT <[EMAIL PROTECTED]> wrote: > hi all. > i tried to install java on my freebsd5.4 > but when installing got the error below. > any idea how to overcome this error ? According to what I've read, the jdk1.5.0 port is in beta and not currently recommended. I'm using 1.4.2 with no problems. Mike -- Michael P. Soulier <[EMAIL PROTECTED]> ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Why scandir(3) argument not const?
Hello. I read scandir(3). Why: scandir(const char *dirname, struct dirent ***namelist, int (*select)(struct dirent *), int (*compar)(const void *, const void *)); and not: scandir(const char *dirname, struct dirent ***namelist, int (*select)(const struct dirent *), int (*compar)(const void *, const void *)); I.e. why is the dirent pointer in the third argument not a const dirent pointer? I see that on Linux and NetBSD it is declared const, but not so on FreeBSD and OpenBSD (don't know about other platforms). Since this in not a POSIX function, but a BSD extension, it would be nice if the prototypes for the function was compatible across platforms. Is there any case where the filter function should need to change the dirent structure? I think not. Comments? Best regards, Aron Stansvik ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
upgrade problem.
hi all. i tried to upgrade all installed programs with the command #portupgrade -arR but got the following error. [EMAIL PROTECTED] portupgrade -arR [Updating the pkgdb in /var/db/pkg ... - 328 packages found (-7 +128) (...)/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:466: [BUG] Segmentation fault ruby 1.8.2 (2004-12-25) [i386-freebsd5] Abort trap (core dumped) [EMAIL PROTECTED] then i deinstalled and installed ruby again. nothing changed. what sould i do ? any ideas ? help please ... ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: 6-RELEASE, calcru, FAQs and kern.timercounter.method
On 12/2/05, J. W. Ballantine <[EMAIL PROTECTED]> wrote: > > I've been getting the calcru: negative time message. After > search the site I found the FAQ (5.18) that says to set this variable > sysctl kern.timecounter.method=1. > > When I do that, I get sysctl: unknown old 'kern.timercounter.method'. > > What is the fix/search term for 6-release?? > sysctl -a | grep timecounter should reveal the sysctl to use. In 5.4, kern.timecounter.hardware sounds like what you want, and (if I understand it correctly) the values you can try setting it to are given by kern.timecounter.choice. - Bob ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
LDAP, NFS, and automount
Friends: I want to put my user's home directories on separate servers/disks and mount them on multiple servers as my users' home directories. I'm using LDAP for authentication and name switching (NSS) already on FreeBSD 5.4. (One client is at 6.0.) I know this is discussed in countless HOWTOs and docs on the web, but these are usually for Linux. Can someone please point me to some resources that can make this happen? Does The Handbook's chapter on NFS cover all I need to know in that area? Can I expect any hassles to come from the fact that the host with the home directories is a Linux based network attached storage device? Thanks for any help, Benjamin Doherty Chicago ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Uptimes, autoreboots, and package upgrades
* Louis J. LeBlanc <[EMAIL PROTECTED]> [2005-12-02 09:33:44 -0500]: > So, I know restarting is important on occasion, but my real questions > are: Does anyone use a crontab reboot to make sure their system(s) get > a regular fresh start? If so, how often - weekly, montly, bi-monthly? I think system upgrades should always be done manually, since any change could potentially corrupt an otherwise perfectly running machine. Manually, one can do a quick sanity check to make sure the upgrade went okay, and back out if it didn't. IIRC, on Windows machines the default setting is to automatically download and install OS updates, and this has only caused problems for everyone involved. I don't know any moderately competent Windows user who doesn't turn this feature off right away. Thomas -- N.J. Thomas [EMAIL PROTECTED] Etiamsi occiderit me, in ipso sperabo ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
6-RELEASE, calcru, FAQs and kern.timercounter.method
I've been getting the calcru: negative time message. After search the site I found the FAQ (5.18) that says to set this variable sysctl kern.timecounter.method=1. When I do that, I get sysctl: unknown old 'kern.timercounter.method'. What is the fix/search term for 6-release?? Thanks Jim Ballantine ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
NFS over TCP on 5.4: client stucks
Hello everybody I am trying to mount via NFS a directory exported from FreeBSD 5.4 on a FreeBSD 5.4. The server has these settings: nfs_server_enable="YES" # This host is an NFS server (or NO). nfs_server_flags="-u -t -n 8" # Flags to nfsd (if enabled). nfs_reserved_port_only="YES" # Provide NFS only on secure port (or NO). nfs_bufpackets="8" # bufspace (in packets) for client mountd_enable="YES" # Run mountd (or NO). rpcbind_enable="YES" # Run the portmapper service (YES/NO). rpcbind_program="/usr/sbin/rpcbind" # path to rpcbind, if you want a different one. rpc_lockd_enable="YES" # Run NFS rpc.lockd needed for client/server. rpc_statd_enable="YES" and the client has these: nfs_client_enable="YES" nfs_access_cache="30" nfs_bufpackets="8" rpc_lockd_enable="YES" rpc_statd_enable="YES" rpcbind_enable="YES" The client can mount the server via UDP, but not via TCP, it just stucks. This is an extract from a tcpdump on the server 15:48:33.516995 IP client.991 > server.sunrpc: UDP, length: 56 15:48:33.517159 IP server.sunrpc > client.991: UDP, length: 28 15:48:33.518029 IP client.896 > server.nfsd: S 2110009721:2110009721(0) win 65535 15:48:33.518060 IP server.nfsd > client.896: S 3833266037:3833266037(0) ack 2110009722 win 65535 15:48:33.518458 IP client.896 > server.nfsd: . ack 1 win 33304 15:48:33.519193 IP client.1365672366 > server.nfs: 44 null 15:48:33.519230 IP server.nfs > client.1365672366: reply ok 28 null 15:48:33.519630 IP client.896 > server.nfsd: F 45:45(0) ack 29 win 33304 15:48:33.519649 IP server.nfsd > client.896: . ack 46 win 32745 15:48:33.519668 IP server.nfsd > client.896: F 29:29(0) ack 46 win 32745 15:48:33.519924 IP client.896 > server.nfsd: . ack 30 win 33303 15:48:33.520366 IP client.device > server.sunrpc: UDP, length: 56 15:48:33.520469 IP server.sunrpc > client.device: UDP, length: 28 15:48:33.539400 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:36.538776 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:39.737960 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:42.937178 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:46.136461 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:49.335703 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:48:55.534778 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:49:07.733942 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 15:49:31.933007 IP client.683 > server.nfsd: S 3682544280:3682544280(0) win 65535 Could anyone please help me? Thank you Valerio Daelli ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
How can I get 4.9-ISO-IMAGES-i386
Can you give me an answer,Thanks! -- 叶智杰 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Uptimes, autoreboots, and package upgrades
Hey folks. This is really just a question about admin practices and procedures. I have a 5.4_RELEASE system that I'll be re-installing (clean, on a new hard drive) with 6.0 some time in the next few months. Before I do, I'm interested in fine tuning my administrative ideology. I hear a lot of boasting about uptimes and stability, and whatnot, and with these boasts invariably come responses decrying the wisdom of keeping a machine up for such a long time without resetting it. Reasons abound, but the one I see most often is related to the fact I keep my system well updated, upgrading ports at least weekly. Some of these ports are libraries that fix stability issues, security issues, etc. and are often used by daemons I keep running at all times - though only those absolutely required to be accessible from outside are open through the firewall. Regardless, I've seen some minor wierd behavior because of these upgrades, and unfortunately, I sometimes see daemons refuse to start afterward. Postfix and Courier are the more important ones (to me, anyway) that have misbehaved in this way. Often it is related to a library or a security package that was updated and required a config tweak with the upgrade (particularly Sasl2). So, I know restarting is important on occasion, but my real questions are: Does anyone use a crontab reboot to make sure their system(s) get a regular fresh start? If so, how often - weekly, montly, bi-monthly? Does anyone have a list of packages they flag for more cautious upgrade procedures than just whipping them all into portupgrade? What does this process consist of besides reading the release and/or upgrade notes? My list is a bit short so far, with only postfix, courier, and sasl*. I have considered putting SquirrelMail, Apache, and the Apache addons/modules on the list, but I very rarely have trouble with them. Thanks in advance. Lou -- Louis LeBlanc [EMAIL PROTECTED] Fully Funded Hobbyist, KeySlapper Extrordinaire :þ http://www.keyslapper.net Ô¿Ô¬ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: DHCP failing with WiFi after 6.0 upgrade
Jesse Sheidlower wrote: I recently took my IBM ThinkPad X23, which had been running 4.11, and did a fresh install (backup files, wipe disk, install from scratch) to 6.0. Most things have gone smoothly, though there are still a few things to iron out. My biggest problem is that I can't seem to get DHCP to work with my wireless card. I have an Orinoco Gold 802.11b card that's always worked fine; I'm about to replace it with something else for 802.11g with a new WAP. There seem to be minor differences in how the card goes in; under 4.11 I would get various beeps when I plugged it in and after it associated, but now it's silent. And I had to remember to load WEP in my kernel. But I can seem to get things started by issuing the command ifconfig wi0 ssid jesterWAP wepmode on wepkey 0x[DELETED] which does seem to successfully reach my WAP: # ifconfig wi0 wi0: flags=8843 mtu 1500 inet6 fe80::202:[DELETED] prefixlen 64 scopeid 0x3 ether 00:02:[DELETED] media: IEEE 802.11 Wireless Ethernet autoselect (DS/2Mbps) status: associated ssid jesterWAP channel 6 bssid 00:[DELETED] stationname "FreeBSD WaveLAN/IEEE node" authmode OPEN privacy MIXED deftxkey UNDEF wepkey 1:104-bit txpowmax 100 bintval 100 I can't seem to get a DHCP lease, however: # dhclient wi0 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 5 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 13 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 7 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 8 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 13 DHCPDISCOVER on wi0 to 255.255.255.255 port 67 interval 15 No DHCPOFFERS received. No working leases in persistent database - sleeping. (Under 4.11, I didn't get any verbose output from dhcpclient.) I can get a DHCP lease with fxp0, my Ethernet card; also, some Macs in the house have no problem getting leases through the WAP. (The DHCP server is in a separate router, not in the WAP.) Is there something that's changed under 6.0, or is there just something I'm forgetting to do? I do plan to get a new card, but I want to get this working too. Just about everything about dhclient has changed. The dhclient from ISC has been replaced by a complete new development from the OpenBSD team. Options that previously worked are nolonger recognized. Among these options are the options to configure what wireless network to associate with. Also, added is wpa_supplicant which is used to choose the WLAN to connect to. If there are other WLAN's in your neighbourhood and you have not configured wpa_supplicant, it is likely that you associate with the wrong network and that network doesn't offer a lease. One thing to do, mostly for testing: Reset completely your card so it does not appear to be associated with any network. When you run dhclient and it fails, you should at least be able to see what network it is associated with if any. So, read up on the man-pages, and start over. Cheers, Erik -- Ph: +34.666334818 web: http://www.locolomo.org S/MIME Certificate: http://www.locolomo.org/crt/2004071206.crt Subject ID: A9:76:7A:ED:06:95:2B:8D:48:97:CE:F2:3F:42:C8:F2:22:DE:4C:B9 Fingerprint: 4A:E8:63:38:46:F6:9A:5D:B4:DC:29:41:3F:62:D3:0A:73:25:67:C2 ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
Hi Nate, 2005/12/2, Nate Lawson <[EMAIL PROTECTED]>: > This work is easy, it's just grunt work implementing and testing to see > which is best. See this page for details on how to proceed: > > http://wikitest.freebsd.org/moin.cgi/powerd > > Wikitest seems to be down so here's the text only: > http://66.102.7.104/search?q=cache:IEXV5nW17ZMJ:wikitest.freebsd.org/moin.cgi/powerd+site:wikitest.freebsd.org+powerd+&hl=en&lr=&strip=1 > I'll have a look at it whenever it will become online again. Regards, MC ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
Hi list, 2005/12/2, Bruno Ducrot <[EMAIL PROTECTED]>: > > I don't see why you can't run powerd more frequently, I do.. Unless your > > ACPI > > has a problem that means the transition is slow. > > I'm sure this could not be done under Linux without a lot of > problems (it is required to use the /proc things and it's too slow in > that case). > > > I can't imagine that doing 5 (or even 50) syscalls a second is a big CPU > > load > > unless there is a specific problem with sysctls or the cpufreq > > infrastructure. > > If that's possible being not so intrusive with, say 50 syscalls under FreeBSD, > then all I said above is indeed stupid crap. > > > I run powerd like this -> > > /usr/sbin/powerd -i 90 -r 30 -a adaptive -b adaptive -n adaptive -p 200 > > Well, i've tried decreasing the polling interval, but there is an increased powerd cpu load: at 100ms polling interval the cpu load is to an astonishing 20% circa, which i think it's too much for a normal use. The sampling rate with ondemand governor in linux kernel is 10ms but cpufreqd is at 0.6% on average cpu load. Regards, MC ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Help deriving a corrupted disklabel
Hi Anish, Thanks for the reply -- scan_ffs did exactly what I needed it to do! For those who encounter a similar problem (damaged disklabel on a FreeBSD slice), it's not as simple as one might hope, since I was limited to the "Fixit" shell on the FreeBSD 6.0-RELEASE CD. scan_ffs is not on the CD, which makes it much more difficult (configuring networking, obtaining it via ftp, unpacking the package, etc., since 'pkg_add -r' doesn't work in a Fixit shell). Setup was most of the work! Once I had a usable copy of scan_ffs, the rest was simple. Thanks again for the help. Without it, I'm sure I'd still be struggling to use dd and grep to locate magic numbers using a shell script. Doug On 12/2/05, Anish Mistry <[EMAIL PROTECTED]> wrote: > > On Wednesday 30 November 2005 09:15 pm, Doug H wrote: > > > > PROBLEM: bsdlabel showed me that slice 1 (FreeBSD 5.4) is damaged > > and only partition c existed and was incorrect. I do not have / > > cannot find a written copy of my disklabel for that disk (a good > > suggestion to *strongly emphasize* in the installation manual for > > newbies!). I did recall that ad1s1a ('/') was 512M, so I was able > > to write a label and mount that partition from a "Fixit" shell. > > > > QUESTIONS: How can I rederive the remaining disklabel for that > > disk? Could a copy possibly be stored somewhere on root if I > > didn't do it myself when building the system? > > > > > sysutils/scan_ffs > I've always used it from a emergency FreeBSD diagnostic CD (custom > Freesbie) and it works great. I've never been stuck with only a > fixit shell though. > ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Thunderbird and sound
Micah wrote: Andrea Venturoli wrote: Any hint on getting a wav file played when new mail arrives? I go to preference, click Preview and hear nothing. My /dev/dsp0 is free and artsd is managing /dev/dsp1; the latter is where I'd like to hear that sound through. Is your thunderbird up to date? I had the same problem for a long time. Then one day after updating thunderbird (fairly recently), play sound sudenly started working. Yup, yes! I upgraded right now and I still don't hear anything. How do I specify which sound device to use? bye & Thanks av. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: kernel doesnt compile
On 2005-12-02 14:23, Branko <[EMAIL PROTECTED]> wrote: > Hi, > > i have cvsuped today... and new kernel doesnt compile. > > linking kernel > if_ath.o(.text+0x6c): In function `ath_attach': > : undefined reference to `ath_hal_attach' [...] > GENERIC + > optionsGEOM_BDE > options IPFIREWALL > options IPFIREWALL_DEFAULT_TO_ACCEPT > options IPFIREWALL_VERBOSE_LIMIT=500 > options IPDIVERT > options TCP_DROP_SYNFIN > options DUMMYNET > options IPSEC > options IPSEC_ESP > device sound > device "snd_via82c686" > device ath > options SC_DISABLE_REBOOT > options IPSTEALTH You have added "device ath" in your kernel config and forgot to include "ath_hal". Please read the comments of `/usr/src/sys/i386/conf/NOTES': [...] # # Network interfaces: # # ar: Arnet SYNC/570i hdlc sync 2/4 port V.35/X.21 serial driver # (requires sppp) # arl: Aironet Arlan 655 wireless adapters. # ath: Atheros a/b/g WiFi adapters (requires ath_hal and wlan) [...] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
On Fri, Dec 02, 2005 at 08:35:54PM +1030, Daniel O'Connor wrote: > On Fri, 2 Dec 2005 19:35, Marco Calviani wrote: > > > It's not present under powerd for the simple fact that to be efficient > > > in term of not being too intrusive (kernel to user data transfers, etc), > > > powerd can only provide a limited number of check per second (at this > > > time, 2 per second). But the current algorithm present in powerd is > > > not well suited in that case. You have to wait one demi-second > > > for the processor being put to full speed if the system was idle > > > before. > > > > Are there on the horizon any sort of plans to implement a newer and > > more efficient algorithm to increase the number of transition per > > second? Sorry but i've not understood why linux-cpufreqd is able to > > cope with those without being so intrusive. > > I don't see why you can't run powerd more frequently, I do.. Unless your ACPI > has a problem that means the transition is slow. I'm sure this could not be done under Linux without a lot of problems (it is required to use the /proc things and it's too slow in that case). > I can't imagine that doing 5 (or even 50) syscalls a second is a big CPU load > unless there is a specific problem with sysctls or the cpufreq > infrastructure. If that's possible being not so intrusive with, say 50 syscalls under FreeBSD, then all I said above is indeed stupid crap. > I run powerd like this -> > /usr/sbin/powerd -i 90 -r 30 -a adaptive -b adaptive -n adaptive -p 200 > -- Bruno Ducrot -- Which is worse: ignorance or apathy? -- Don't know. Don't care. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
kernel doesnt compile
Hi, i have cvsuped today... and new kernel doesnt compile. linking kernel if_ath.o(.text+0x6c): In function `ath_attach': : undefined reference to `ath_hal_attach' if_ath.o(.text+0x3df): In function `ath_attach': : undefined reference to `ieee80211_ifattach' if_ath.o(.text+0x43d): In function `ath_attach': : undefined reference to `ieee80211_media_status' if_ath.o(.text+0x448): In function `ath_attach': : undefined reference to `ieee80211_media_init' if_ath.o(.text+0x50e): In function `ath_detach': : undefined reference to `ieee80211_ifdetach' if_ath.o(.text+0x8f2): In function `ath_chan2flags': : undefined reference to `ieee80211_chan2mode' if_ath.o(.text+0xa3a): In function `ath_init': : undefined reference to `ieee80211_chan2mode' if_ath.o(.text+0x12f1): In function `ath_start': : undefined reference to `ieee80211_encap' if_ath.o(.text+0x143b): In function `ath_start': : undefined reference to `ieee80211_free_node' if_ath.o(.text+0x1471): In function `ath_media_change': : undefined reference to `ieee80211_media_change' if_ath.o(.text+0x154f): In function `ath_watchdog': : undefined reference to `ieee80211_iterate_nodes' if_ath.o(.text+0x155a): In function `ath_watchdog': : undefined reference to `ieee80211_watchdog' if_ath.o(.text+0x16d2): In function `ath_ioctl': : undefined reference to `ieee80211_ioctl' if_ath.o(.text+0x1b7e): In function `ath_beacon_alloc': : undefined reference to `ieee80211_add_rates' if_ath.o(.text+0x1b97): In function `ath_beacon_alloc': : undefined reference to `ieee80211_chan2ieee' if_ath.o(.text+0x1bd9): In function `ath_beacon_alloc': : undefined reference to `ieee80211_add_xrates' if_ath.o(.text+0x2519): In function `ath_node_alloc': : undefined reference to `M_80211_NODE' if_ath.o(.text+0x2a64): In function `ath_rx_proc': : undefined reference to `ieee80211_find_node' if_ath.o(.text+0x2aed): In function `ath_rx_proc': : undefined reference to `ieee80211_input' if_ath.o(.text+0x2b11): In function `ath_rx_proc': : undefined reference to `ieee80211_free_node' if_ath.o(.text+0x307b): In function `ath_tx_start': : undefined reference to `ath_hal_computetxtime' if_ath.o(.text+0x30d8): In function `ath_tx_start': : undefined reference to `ath_hal_computetxtime' if_ath.o(.text+0x30f5): In function `ath_tx_start': : undefined reference to `ath_hal_computetxtime' if_ath.o(.text+0x3117): In function `ath_tx_start': : undefined reference to `ath_hal_computetxtime' if_ath.o(.text+0x3621): In function `ath_tx_proc': : undefined reference to `ieee80211_free_node' if_ath.o(.text+0x390a): In function `ath_draintxq': : undefined reference to `ieee80211_free_node' if_ath.o(.text+0x3b2a): In function `ath_chan_set': : undefined reference to `ieee80211_chan2ieee' if_ath.o(.text+0x3b3f): In function `ath_chan_set': : undefined reference to `ieee80211_chan2ieee' if_ath.o(.text+0x3bc4): In function `ath_chan_set': : undefined reference to `ieee80211_chan2ieee' if_ath.o(.text+0x3c33): In function `ath_chan_set': : undefined reference to `ieee80211_chan2mode' if_ath.o(.text+0x3c81): In function `ath_next_scan': : undefined reference to `ieee80211_next_scan' if_ath.o(.text+0x3d89): In function `ath_newstate': : undefined reference to `ieee80211_state_name' if_ath.o(.text+0x3f73): In function `ath_newstate': : undefined reference to `ieee80211_chan2ieee' if_ath.o(.text+0x411b): In function `ath_getchannels': : undefined reference to `ath_hal_init_channels' if_ath.o(.text+0x4168): In function `ath_getchannels': : undefined reference to `ath_hal_mhz2ieee' if_ath.o(.data+0x20): undefined reference to `sysctl__hw_ath_children' if_ath.o(.data+0x60): undefined reference to `sysctl__hw_ath_children' if_ath.o(.data+0xa0): undefined reference to `sysctl__hw_ath_children' if_ath.o(.data+0x100): undefined reference to `sysctl__hw_ath_children' if_ath.o(.data+0x160): undefined reference to `sysctl__hw_ath_children' if_ath.o(.data+0x1a0): more undefined references to `sysctl__hw_ath_children' follow if_ath_pci.o(.text+0xae): In function `ath_pci_probe': : undefined reference to `ath_hal_probe' *** Error code 1 Stop in /usr/src. *** Error code 1 Stop in /usr/src. Stop in /usr/obj/usr/src/sys/SOLos. *** Error code 1 my kernel config GENERIC + optionsGEOM_BDE options IPFIREWALL options IPFIREWALL_DEFAULT_TO_ACCEPT options IPFIREWALL_VERBOSE_LIMIT=500 options IPDIVERT options TCP_DROP_SYNFIN options DUMMYNET options IPSEC options IPSEC_ESP device sound device "snd_via82c686" device ath options SC_DISABLE_REBOOT options IPSTEALTH Brane ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
a bit of FFS questions (errata)
in question 1 should be maxbsize 16384 maxbpg 2048maxcontig contigsumsize 16 sorry ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
a bit of FFS questions
can someone help me. 1) newfs -a successfully creates the filesystem but dumpfs shows: . . . maxbsize 16384 maxbpg 2048maxcontig 16contigsumsize 16 what's the difference between maxcontig and contigsumsize? will FreeBSD kernel actually make user of maxcontig >16 (with MAXPHYS>128k it make sense) 2) -b - does it make real sense? i tested with large files and it CPU load is small anyway, while transfer speed is the same. the answer may depend on answer for question 1 however. 3) -i - it would save space to use -i 16384, 32768 or more, and reduce fsck times. but if inode counts is closely tailored to amount of files, will it slow down filesystem and how much? i think if something like half or less inodes are allocated, OS have higher degree of freedom of where to allocate inode. but i imagine too that having even more free inodes doesn't make things. what is the ratio of used to free inodes, below which there will be just wasted space? 4) -o space/time - in my tests i can't see much difference in CPU load, maybe on 386 it was a difference but not on Athlon64 or P4. isn't -o space better to be always used? 5) -m - does -m change anything in FFS algorithms, or it's just a quota? i would prefer to set it low just in case of urgent need of space, while trying to maintain 8-10 free space at normal operation. am i right? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
which dot-matrix printer to buy
Hello everyone, I want to buy a dot-matrix printer. Can any body tell me which "dot-matrix" printer (black-and-white only) is supported under "FreeBSD 5.4" ? I want to use it on a home-PC. also do you have any suggestions regarding which one is better : "dot-matrix or ink-jet" . please also tell me supported brand-names. thanks "arnuld" -- "the great intellectuals" -- "the great intellectuals" ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: BSD vs Linux Threads
On 2005-12-02 14:00, Michael Vince <[EMAIL PROTECTED]> wrote: > For 6 Linux threads from my benchmarking and from what I have seen > some peoples posts gives poor performance compared to libthr or > libpthread I am using more of libthr over libpthread in 6.0 and have > been benchmarking best results. > > Try this in /etc/libmap.conf > [mysqld] > libpthread.so.2 libthr.so.2 > libpthread.so libthr.so Unfortunately, "I have best results with libthr" is completely worthless, unless you also describe the exact process of the benchmark and why this particular benchmark is considered very important for your specific application vs. other types of workload :/ ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
upgrading all installed packages problem.
hi all. i tried to run #portupgrade -arR but got the error below: [EMAIL PROTECTED] portupgrade -arR [Updating the pkgdb in /var/db/pkg ... - 328 packages found (-7 +128) (...)/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:466: [BUG] Segmentation fault ruby 1.8.2 (2004-12-25) [i386-freebsd5] Abort trap (core dumped) [EMAIL PROTECTED] how can i fix this error ? any suggestion ? Regards. Bye ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: where is the kernel config menu?
On Fri, 2005-12-02 at 10:05, John Cox & Christine Armond wrote: > I am trying to Install 6.0 following the procedure in the handbook. > It says the kernel config menu should appear immediately after booting. > I don't see that. For me it goes directly to sysinstall. > How do get to the kernel config menu? > Thanks. John > John, The note on the page says that the kernel config menu has been depreciated (removed) in versions 5.0 and later. The handbook covers multiple versions. Do you have a specific problem ? Rob ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: where is the kernel config menu?
On Fri, 02 Dec 2005 05:05:41 -0500 John Cox & Christine Armond <[EMAIL PROTECTED]> wrote: > I am trying to Install 6.0 following the procedure in the handbook. > It says the kernel config menu should appear immediately after > booting. I don't see that. For me it goes directly to sysinstall. > How do get to the kernel config menu? > Thanks. John > This only applies to versions of FreeBSD prior to 5.0-RELEASE. From the handbook: >> Note: From FreeBSD versions 5.0 and later, userconfig has been >> deprecated in favor of the new device.hints(5) method. For more >> information on device.hints(5) please visit Section 12.5 Joerg -- | /"\ ASCII ribbon | GnuPG Key ID | c7e4 d91d 64e2 6321 9988 | | \ / campaign against |0xb248b614 | f27a 4e5b 06ce b248 b614 | | XHTML in email | .the next sentence is a lie. | | / \ and news | .the previous sentence was true. | ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
On Fri, 2 Dec 2005 19:35, Marco Calviani wrote: > > It's not present under powerd for the simple fact that to be efficient > > in term of not being too intrusive (kernel to user data transfers, etc), > > powerd can only provide a limited number of check per second (at this > > time, 2 per second). But the current algorithm present in powerd is > > not well suited in that case. You have to wait one demi-second > > for the processor being put to full speed if the system was idle > > before. > > Are there on the horizon any sort of plans to implement a newer and > more efficient algorithm to increase the number of transition per > second? Sorry but i've not understood why linux-cpufreqd is able to > cope with those without being so intrusive. I don't see why you can't run powerd more frequently, I do.. Unless your ACPI has a problem that means the transition is slow. I can't imagine that doing 5 (or even 50) syscalls a second is a big CPU load unless there is a specific problem with sysctls or the cpufreq infrastructure. I run powerd like this -> /usr/sbin/powerd -i 90 -r 30 -a adaptive -b adaptive -n adaptive -p 200 -- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C pgpIsUmSjEcrk.pgp Description: PGP signature
where is the kernel config menu?
I am trying to Install 6.0 following the procedure in the handbook. It says the kernel config menu should appear immediately after booting. I don't see that. For me it goes directly to sysinstall. How do get to the kernel config menu? Thanks. John ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cpufreq and changing driver
Marco Calviani wrote: Hi Bruno, > > 2) sorry what about the point that we were discussing above? The high number of transition you were explaining me, are present in the actual implementation of powerd, and if not, why? It's not present under powerd for the simple fact that to be efficient in term of not being too intrusive (kernel to user data transfers, etc), powerd can only provide a limited number of check per second (at this time, 2 per second). But the current algorithm present in powerd is not well suited in that case. You have to wait one demi-second for the processor being put to full speed if the system was idle before. Are there on the horizon any sort of plans to implement a newer and more efficient algorithm to increase the number of transition per second? Sorry but i've not understood why linux-cpufreqd is able to cope with those without being so intrusive. This work is easy, it's just grunt work implementing and testing to see which is best. See this page for details on how to proceed: http://wikitest.freebsd.org/moin.cgi/powerd Wikitest seems to be down so here's the text only: http://66.102.7.104/search?q=cache:IEXV5nW17ZMJ:wikitest.freebsd.org/moin.cgi/powerd+site:wikitest.freebsd.org+powerd+&hl=en&lr=&strip=1 -- Nate ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Making a FreeBSD live CD
Hi! I have setup and configured my machine with FBSD 5.4. Now I am thinking to make all the OS to a Live CD and use my hard drive for mysql, web and mail data and swap of course. Now I allready have two HDD where on first is OS and on second my data as stated before. After it would be nice to boot the system with CD only. Is this possible and if it is, how to make it? Regards, Sasa ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: pkg_add of CVSup errors when looking for dependencies
On Fri, Dec 02, 2005 at 12:05:11AM -0800, Jose Borquez wrote: > I am attempting to install the cvsup package I downloaded using pkg_add > -r cvsup-without-gui-16.1h_2.tbz, but I keep getting the following error: > > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz: > > File unavailable (e.g., file not found, no access) > pkg_add: unable to fetch > 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz' > > by URL > > It looks like the default link that cvsup attempts to look for > dependencies is incorrect. How can I specify an alternate link for > cvsup to use? No, your command was incorrect: you don't specify a version with pkg_add -r, you just do pkg_add -r cvsup-without-gui and it will give you whatever version is in the package tree. Kris pgpkrKU9JdZO2.pgp Description: PGP signature
Re: cpufreq and changing driver
Hi Bruno, > > 2) sorry what about the point that we were discussing above? The high > > number of transition you were explaining me, are present in the actual > > implementation of powerd, and if not, why? > > It's not present under powerd for the simple fact that to be efficient > in term of not being too intrusive (kernel to user data transfers, etc), > powerd can only provide a limited number of check per second (at this > time, 2 per second). But the current algorithm present in powerd is > not well suited in that case. You have to wait one demi-second > for the processor being put to full speed if the system was idle > before. > Are there on the horizon any sort of plans to implement a newer and more efficient algorithm to increase the number of transition per second? Sorry but i've not understood why linux-cpufreqd is able to cope with those without being so intrusive. Best regards, MC ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Java error.
hi all. i tried to install java on my freebsd5.4 but when installing got the error below. any idea how to overcome this error ? \ fi /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:227: ')' expected private static final class Aliases ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:389: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:389: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:390: ')' expected private static final class Classes ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:429: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:429: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:430: ')' expected private static final class Cache ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:226: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:389: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:389: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:429: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ /usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc/sun/nio/cs/StandardCharsets.java:429: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:869: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return cons.newInstance(null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:949: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning readObjectNoDataMethod.invoke(obj, null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:977: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return writeReplaceMethod.invoke(obj, null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:1006: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warn
Re: XVideo-support gone
* Svein Halvor Halvorsen > > I'm not sure when this happened, but I'm not able to use the XVideo > > extension enymore. I'm 100% positive that I was able to before, but now > > MPlayer wont let me use it. xvinfo also says "no adaptors present". > > > > I imagine this might have happened during the 6.0-upgrade, but I can't say > > for sure. I upgraded by the usual cvsup/makeworld/etc-routine, and used my > > usual KERNCONF, so no changes there. Some apps still are 5.x-binaries, but > > I've portupgraded both xorg and mplayer just to be sure. * RW [2005-11-29 18:17 -] > Did you try: portupgrade -Rf mplayer Yes, and since then I've upgraded my entire ports collection also. I don't think is a mplayer issue, though, because xvinfo reports "no adaptors present". I don't know too much about how all this fits together, and can't say if this is an xorg issue, kernel issue, or other, but I am certain that sometime in the not-to-distant-past XVideo did work on this particular hardware. How is that? What should I look into? Is it possible that a buildkernel could stir xvideo up in the -beta to -release upgrade, when the kernel config file has been left untouched? Best regards, Svein Halvor ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: pkg_add of CVSup errors when looking for dependencies
On Fri, 2005-12-02 at 08:05, Jose Borquez wrote: > I am attempting to install the cvsup package I downloaded using pkg_add > -r cvsup-without-gui-16.1h_2.tbz, but I keep getting the following error: > > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz: > File unavailable (e.g., file not found, no access) > pkg_add: unable to fetch > 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz' > by URL > > It looks like the default link that cvsup attempts to look for > dependencies is incorrect. How can I specify an alternate link for > cvsup to use? > Thanks in advance for any help. > Jose > Jose, To download and install a pkg you use the -r option. If you have already downloaded it the you do not need the -r. The reason you are getting the unable to fetch is probably that you are asking for a specific version which is not available. To download and install the latest version of cvsup just do pkg_add -r cvsup-without-gui See the handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/packages-using.html Rob ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
pkg_add of CVSup errors when looking for dependencies
I am attempting to install the cvsup package I downloaded using pkg_add -r cvsup-without-gui-16.1h_2.tbz, but I keep getting the following error: Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-5.4-release/Latest/cvsup-without-gui-16.1h_2.tbz' by URL It looks like the default link that cvsup attempts to look for dependencies is incorrect. How can I specify an alternate link for cvsup to use? Thanks in advance for any help. Jose ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"