Re: FreeBSD 5.3

2005-05-13 Thread Hervé Kergourlay
Kris Kennaway a écrit : On Thu, May 12, 2005 at 02:24:51PM +0200, Herv? Kergourlay wrote: I change the kernel with the following command sysctl kern.corefile=/cores/%U/%P%N.core Make sure those directories exist and are writable by the user. They won't be created automatically.

Shutting down [k|g]dm for a short while?

2005-05-13 Thread Mac Mason
I run kdm on ttyv8, as recommended by the handbook. % grep kdm /etc/ttys ttyv8 /usr/local/bin/kdm -nodaemonxterm on secure I'm also using the closed-source nvidia drivers. To upgrade them requires that I unload nvidia.ko. Which I can't do with kdm running, because it needs that

Replacing hdd in multiboot system

2005-05-13 Thread Kenneth W Cochran
Hello -questions: I have a failing hdd and could use some input/advice as to a strategy for replacing it. See below for system/configuration information (more on request). Based on reported/logged information and on usage patterns, da1 is the failing drive I need to replace it. Notes: This

Re: Netgroups and LDAP?

2005-05-13 Thread Uwe Laverenz
On Thu, May 12, 2005 at 03:59:24PM -0500, Ben Hockenhull wrote: I only want certain (large, broad) groups of people to be able to login to a given server, and I believe I'm looking to implement netgroups to do that, but I haven't been able to find any documentation on how to do that with

Re: backup

2005-05-13 Thread Hexren
Howdy, My server has an 18 gig drive in it. I'm looking to do incremental backups every night, where my entire /ext partition will be mirrored elsewhere (/ext is the only thing with anything special on it that would need to be recreated). I was thinking of either backing up to my home

Re: Big delay between login as: and Password:

2005-05-13 Thread Peter N. M. Hansteen
Fafa Hafiz Krantz [EMAIL PROTECTED] writes: I'm experiencing a rather unusual delay in between login as: and Password: when I SSH in via PuTTY -- it lasts for about 1 minute, maybe a bit more. How can this be? Sounds like your name resolution isn't quite what it should be. Delays like these

How to replace words in all files?

2005-05-13 Thread Fafa Hafiz Krantz
Hello! I have a bunch of configuration files which all contain the word, or the reference to, my dysfunctional network interface lnc0. I used to have this simple script -- to replace a word in all ASCII files containing it -- with another word. In this case, I need to replace the string `lnc0'

Re: Big delay between login as: and Password:

2005-05-13 Thread Fafa Hafiz Krantz
Hello :) For some strange reason, this morning the delay disappeared! Define this a bit more. IE: from a remote PC, a remote site, etc. If its the latter, then the lagg would be the latency between point A and point B. Meaning, if the remote box is miles away, the route to it may be

Re: How to replace words in all files?

2005-05-13 Thread Sergey S. Ropchan
find / -name '*' -print | xargs grep lnc0 - gives you all files in your system with lnc0 ... perl -pi.bak -pe 's/lnc0/rl0/' file1 file2 ... fileN - will replace lnc0 - rl0 in all specified files, with backuping of old files in *.bak Hello! I have a bunch of configuration files which all

FreeBSD 5.3 installation problem

2005-05-13 Thread simon butsana
Hi, When trying to install FreeBSD 5.3 on my computer, I get the following error No disks found. But I can install without any problem Linux or Windows on that computer. The hard disk is IDE 160 GB (Western Digital). Does anyone have an idea on a solution? Thanks, Simon Hervé

Re: FreeBSD 5.3 installation problem

2005-05-13 Thread Chuck Swiger
simon butsana wrote: When trying to install FreeBSD 5.3 on my computer, I get the following error No disks found. But I can install without any problem Linux or Windows on that computer. The hard disk is IDE 160 GB (Western Digital). Does anyone have an idea on a solution? 5.4 just came out,

Re: How to replace words in all files?

2005-05-13 Thread Fafa Hafiz Krantz
find / -name '*' -print | xargs grep lnc0 - gives you all files in your system with lnc0 ... perl -pi.bak -pe 's/lnc0/rl0/' file1 file2 ... fileN - will replace lnc0 - rl0 in all specified files, with backuping of old files in *.bak Thank you! *nods in burning respect* -- Fafa Hafiz

Re: How to replace words in all files?

2005-05-13 Thread Sergey S. Ropchan
On Fri, 2005-05-13 at 05:23 -0500, Fafa Hafiz Krantz wrote: find / -name '*' -print | xargs grep lnc0 - gives you all files in your system with lnc0 ... perl -pi.bak -pe 's/lnc0/rl0/' file1 file2 ... fileN - will replace lnc0 - rl0 in all specified files, with backuping of old files

Re: How to replace words in all files?

2005-05-13 Thread Svein Halvor Halvorsen
* Sergey S. Ropchan [2005-05-13 12:40 +0300] find / -name '*' -print | xargs grep lnc0 - gives you all files in your system with lnc0 ... perl -pi.bak -pe 's/lnc0/rl0/' file1 file2 ... fileN - will replace lnc0 - rl0 in all specified files, with backuping of old files in *.bak Or

Re: How to replace words in all files?

2005-05-13 Thread Svein Halvor Halvorsen
* Svein Halvor Halvorsen [2005-05-13 12:43 +0200] Or one could use with the -i option, since sed is in the base system ^ sed ___ freebsd-questions@freebsd.org mailing list

tar --delete

2005-05-13 Thread Pietro Cerutti
Hi there, can anyone explain why in the FreeBSD version of tar there isn't any --delete option? in the GNU versione of the tar archiving utility we have: --delete delete from the archive (not for use on mag tapes!) (http://unixhelp.ed.ac.uk/CGI/man-cgi?tar) in the FreeBSD version

Re: How to replace words in all files?

2005-05-13 Thread Chuck Swiger
Sergey S. Ropchan wrote: [ ... ] Why when you send message - always 2 messages in maillist !? Sometimes people CC: questions and freebsd-questions. Otherwise, Mailman sometimes double-posts messages if an error happens, depending on the granularity of the list batchsize delivery to SMTP, and how

Re: tar --delete

2005-05-13 Thread [EMAIL PROTECTED]
On Fri, 13 May 2005 13:26:09 +0200 Pietro Cerutti [EMAIL PROTECTED] wrote: can anyone explain why in the FreeBSD version of tar there isn't any --delete option? no idea Is there a workaround to make tar deleting a file in the archive (without extracting, deleting, re-tarring) ? gnu tar

Re: FreeBSD 5.3

2005-05-13 Thread Hervé Kergourlay
Kris Kennaway a écrit : On Thu, May 12, 2005 at 02:24:51PM +0200, Herv? Kergourlay wrote: I change the kernel with the following command sysctl kern.corefile=/cores/%U/%P%N.core Make sure those directories exist and are writable by the user. They won't be created automatically.

Re: wifi support

2005-05-13 Thread Fabian Keil
Perica Veljanovski [EMAIL PROTECTED] wrote: I'm thinking of buying a Fujitsu-Siemens AMILO Pro V2020 laptop which has a Pentium M 725 (centrino) processor, Inter 855GME chipset with integrated Intel PRO/Wireless 2200BG Fast Ethernet LAN. Since I'm not at all familiar with with the wi-fi

Re: Shutting down [k|g]dm for a short while?

2005-05-13 Thread Xian
On Friday 13 May 2005 07:52, Mac Mason wrote: I run kdm on ttyv8, as recommended by the handbook. % grep kdm /etc/ttys ttyv8 /usr/local/bin/kdm -nodaemonxterm on secure I'm also using the closed-source nvidia drivers. To upgrade them requires that I unload nvidia.ko. Which I

Re: 4.9-RELEASE Xorg switch question

2005-05-13 Thread Lowell Gilbert
ravi [EMAIL PROTECTED] writes: On 05/07/05 11:12, Lowell Gilbert wrote: Hmm. Are you sure that you deleted the imake ports before building X.Org? You shouldn't have stale imake dependencies from X.Org if you rebuilt both. And the stale dependencies from other X ports should get

about FreeBSD 4.11

2005-05-13 Thread Marko Bukovinsky
When its runs ask me for login and password and i dont know them.What to type for login and password? And i have on second hard disk windows operating system. How to swich between them( from FreeBSD to windows and windows to FreeBSD )? Marko ___

Re: about FreeBSD 4.11

2005-05-13 Thread Kris Kennaway
On Sun, May 15, 2005 at 07:00:43PM +0200, Marko Bukovinsky wrote: When its runs ask me for login and password and i dont know them.What to type for login and password? When you installed the system it asked for a root password. Use this password with the root account. If you added other

Re: Tracking down kern.ipc.maxpipekva exceeded

2005-05-13 Thread Lowell Gilbert
Ewald Jenisch [EMAIL PROTECTED] writes: Hi, For some time one of my machines in plaged be becoming completely unresponsive after different amounts of time (several hours up to several days). Symptoms: Machine is PINGable, but no access over the network is possible (neither ssh-login

Re: reverse stereo

2005-05-13 Thread Lowell Gilbert
fredthetree [EMAIL PROTECTED] writes: Is there a control somewhere to flip the stereo signal of the soundcard? I don't think so; why wouldn't you just flip the inputs instead of the outputs? ___ freebsd-questions@freebsd.org mailing list

Re: dhclient issue with 5.4...

2005-05-13 Thread Lowell Gilbert
mojo fms [EMAIL PROTECTED] writes: I did a reinstall recently and since then i can not connect the internet using dhclient on that machine. I looked around on google for a bit but found nothing that fixed the problem. I checked the PnP OS option in the bios, it is already set to No, and i

Re: Something wrong with X

2005-05-13 Thread Lowell Gilbert
Reginaldo Tavares [EMAIL PROTECTED] writes: I just installed FSB5.4-RELEASE in my laptop, a compaq nx9005. It has an ATI video adpter. But something is wrong. The Xserver puts the following message: error: [drm:pid551:radeon_cp_init] * ERROR*radeon_cp_init called without lock Did you try

OSDir.com Screenshots of your release

2005-05-13 Thread Chris Haney
Congratulations on your latest release. We'd love to have this release listed in our screenshot gallery (http://shots.osdir.com). Posting your screenshots is an excellent way to promote your product, as submitting is free and our screenshots are seen by thousands of people daily

Re: Setting up ntpd on FreeBSD (5.4)

2005-05-13 Thread Michal Mertl
Benjamin Keating wrote: I'm running a generic install of FreeBSD 5.4 and would like to setup ntpd. ntpdate doesn't do me much good as I rarely reboot, but I took the handbooks suggestion of using it anyway (and I've verified it works)). Anyway, I'm having trouble setting up ntpd and it'd be

Re: Box Mysteriously Rebooting?

2005-05-13 Thread Ed Stover
Subhro wrote: On 5/13/2005 8:28, Jeff Bethke wrote: Hi All, I have a host that has been super relilable without issues. Then, I had a power outage. After that, the host has stayed stable for anywhere from 6 to 48 hours... Then the host mysteriously reboots itself. I swapped out the

Re: OSDir.com Screenshots of your release

2005-05-13 Thread Jerry McAllister
Congratulations on your latest release. We'd love to have this release listed in our screenshot gallery (http://shots.osdir.com). Posting your screenshots is an excellent way to promote your product, as submitting is free and our screenshots are seen by thousands of people daily

Re: OSDir.com Screenshots of your release

2005-05-13 Thread David Kelly
On Fri, May 13, 2005 at 09:39:36AM -0400, Jerry McAllister wrote: Since your whole site seems to be about Linux distros, maybe you do not understand that FreeBSD is NOT Linux. It is not based on Linux. It does not use a Linux kernel. Not only that but Why would anyone care what a

Re: Setting up ntpd on FreeBSD (5.4)

2005-05-13 Thread Rob
Michal Mertl wrote: /etc/ntp directory isn't used by default on 5.4. The default location for ntp.drift file is /var/db. I've never created it by hand (not even by 'touching' it), it gets created automatically. No, there's no such default as /var/db/ntp.drift. It's either /etc/ntp.drift or

Re: 4.9-RELEASE Xorg switch question

2005-05-13 Thread ravi
On 05/13/05 08:50, Lowell Gilbert wrote: ravi [EMAIL PROTECTED] writes: On 05/07/05 11:12, Lowell Gilbert wrote: Hmm. Are you sure that you deleted the imake ports before building X.Org? You shouldn't have stale imake dependencies from X.Org if you rebuilt both. And the stale

FreeBSD 5.4 apache vs. apache+mod_ssl and mod_php4 dependencies.

2005-05-13 Thread Joe Capali
Back in the day...4.9-RELEASE you were able to install apache+mod_ssl and mod_php4. Now 5.4-RELEASE requires apache as a dependency to install mod_php4 and fails with apache+mod_ssl already installed. Don't know if this is a problem just I am having. I would like to end up with my 4.9 config on

Re: FreeBSD 5.4 apache vs. apache+mod_ssl and mod_php4 dependencies.

2005-05-13 Thread Odhiambo Washington
* Joe Capali [EMAIL PROTECTED] [20050513 17:21]: wrote: Back in the day...4.9-RELEASE you were able to install apache+mod_ssl and mod_php4. Yes. Now 5.4-RELEASE requires apache as a dependency to install mod_php4 So what do you want mod_php4 for if not for use with Apache? Anyway

Re: 4.9-RELEASE Xorg switch question

2005-05-13 Thread Lowell Gilbert
ravi [EMAIL PROTECTED] writes: unfortunately, 'pkgdb -F' does not suggest the redirections. perhaps, as you seem to suspect ;-), i messed up (or plain forgot) the deletion of the imake ports. now that i am in the state i am in, would you consider it safe to run 'pkgdb -F' (or -s) and provide

miniinst.iso file missing for 5.4

2005-05-13 Thread fbsd_user
5.4 stable release has finally made it to the FreeBSD FTP mirror sites. But the miniinst.iso file is missing. What gives here? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Video card support

2005-05-13 Thread Paul Schmehl
I just got a new desktop machine, and I'm reviewing the supported hardware list on freebsd.org. I don't see anything at all about video cards. Are they listed in some other place? I found two messages in the hardware mailing list that mention the ati radeon x300 card, but the only thing I

Re: OSDir.com Screenshots of your release

2005-05-13 Thread Ryan J. Cavicchioni
Jerry McAllister wrote: Congratulations on your latest release. We'd love to have this release listed in our screenshot gallery (http://shots.osdir.com). Posting your screenshots is an excellent way to promote your product, as submitting is free and our screenshots are seen by thousands of

Re: Video card support

2005-05-13 Thread Dan Nelson
In the last episode (May 13), Paul Schmehl said: I just got a new desktop machine, and I'm reviewing the supported hardware list on freebsd.org. I don't see anything at all about video cards. Are they listed in some other place? FreeBSD only uses the text mode of video cards, so it's

merging annotations with PDF

2005-05-13 Thread Tim Stephens
I've been given some PDF's that contain annotations, and I need to print them out. The problem is that the annotations rely on covering up the contents of the original PDF. Are there any utilities available that will allow me to incorporate the comments into the pdf and hence get them to print

Re: Video card support

2005-05-13 Thread Paul Schmehl
--On Friday, May 13, 2005 10:14:06 AM -0500 Dan Nelson [EMAIL PROTECTED] wrote: FreeBSD only uses the text mode of video cards, so it's compatible with anything. You want to look at www.X.org or www.XFree86.org for X support. Duh. Thanks, Dan, and Jason too, for answering so quickly. Should

Re: reverse stereo

2005-05-13 Thread fredthetree
These speakers have to be backwards (desk layout short cords), so if I could get the mixer to switch the channels, I wouldn't have to worry about each individual program/input. :) On 13 May 2005 09:17:07 -0400, Lowell Gilbert [EMAIL PROTECTED] wrote: fredthetree [EMAIL PROTECTED] writes:

Re: dhclient issue with 5.4... ACPI problem..

2005-05-13 Thread mojo fms
I tryed loading the system with ACPI disabled and it worked just fine. I have looked through the handbook but i cant seem to find a way to permently disable it or how to fix the problem through it. Any help on the issue would be great... From: Lowell Gilbert [EMAIL PROTECTED] Reply-To:

problems mailing from base_host to jail_on_base_host

2005-05-13 Thread Joe Schmoe
I have a freeBSD 4.10-RELEASE installation. On that system, I have, running, a jail with a 4.10-RELEASE userland that is _identical_ to the base host. It is identical because I dumped the base systems filesystem and restored it inside the jail. Everything is working fine. I have never touched

Re: mozilla

2005-05-13 Thread Alex Zbyslaw
Gert Cuykens wrote: i have a the output of the hole building process if necesary Just to check the obvious, you are doing this as root, yes? Beyond that I don't think I have any more ideas. Send the *end* of the build log and we can look at it again and see if anything obvious strikes. I've

Re: can't build firefox 1.0.4 on 4.10

2005-05-13 Thread Alex Zbyslaw
Timothy Smith wrote: Or try: setenv LIBIDL_CONFIG `which libIDL-config-2` or it {ba,z}sh equivalent. --Alex ok i just did the following ( i must have mis typed the first tiem or something ) and the ./configure finished, but it get Makefile, line 406: Missing dependency operator Error expanding

Re: Box Mysteriously Rebooting?

2005-05-13 Thread Jeff Bethke
Nope, pf is turned off on this host as is all other non-essential* parts like linux compat and daemons I don't really-really-really need. I've read through archives and it seems that when the FreeBSD kernel hits *any* kind of hardware fault.. it reboots! Is there any daemon out there that

Re: Box Mysteriously Rebooting?

2005-05-13 Thread Alex Zbyslaw
Jeff Bethke wrote: I've read through archives and it seems that when the FreeBSD kernel hits *any* kind of hardware fault.. it reboots! Nonsense. If, for example, your memory was duff or overheating, and that caused a bad dereference in kernel code, then it might, quite understandably, cause

tripwire in 5.4

2005-05-13 Thread Tim Traver
Hi all, seems that tripwire is not updated to run 5.4... Are there any plans to have the port updated ? Is it possible to compile it anyways ??? Thanks, Tim. ___ freebsd-questions@freebsd.org mailing list

How to get best results from FreeBSD-questions

2005-05-13 Thread Greg Lehey
How to get the best results from FreeBSD questions. === Last update $Date: 2004/09/19 02:40:48 $ 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

The Complete FreeBSD: errata and addenda

2005-05-13 Thread Greg Lehey
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.

cvsup for ports-dupfile

2005-05-13 Thread mojo fms
I was wondering if there is a setting in there under the tag like you have for the standard-supfile to where its set for 5.4? Or do you just keep it up-to-date with the current releases everyday? ___ freebsd-questions@freebsd.org mailing list

Re: dhclient issue with 5.4... ACPI problem..

2005-05-13 Thread Lowell Gilbert
mojo fms [EMAIL PROTECTED] writes: I tryed loading the system with ACPI disabled and it worked just fine. I have looked through the handbook but i cant seem to find a way to permently disable it or how to fix the problem through it. Any help on the issue would be great... According to man

Re: httpd.core

2005-05-13 Thread Tom Vilot
Although quite a bit of time has gone by, I thought I would follow up this thread with my fix so that future searches of this thread will turn up the solution. My solution was to statically compile mod_perl into httpd. Although I thought the problem was PHP, it turned out not to be. After

Re: cvsup for ports-dupfile

2005-05-13 Thread Lowell Gilbert
mojo fms [EMAIL PROTECTED] writes: I was wondering if there is a setting in there under the tag like you have for the standard-supfile to where its set for 5.4? Or do you just keep it up-to-date with the current releases everyday? I can't parse the question, but the list of supported tags for

Managing updates in jails

2005-05-13 Thread Mark Bucciarelli
I'm a recent convert to FreeBSD, mainly because of the jail functionality. I am trying to figure out a good system for keeping jails updated and am running against my lack of experience with the compile-from-source approach as well as the different startup scripts. I have pretty much settled

Re: 5.4 package install woes.... :(

2005-05-13 Thread Lowell Gilbert
Bill Schoolcraft [EMAIL PROTECTED] writes: So, while kde3 is still building from ports I copied both full iso images to my new FreeBSD box in hopes of maybe mounting them in loopback and offering the two ISO images up via /stand/sysinstall as a source for packages. I cannot seem to get the

Re: reverse stereo

2005-05-13 Thread Lowell Gilbert
Don't top-post, please. fredthetree [EMAIL PROTECTED] writes: On 13 May 2005 09:17:07 -0400, Lowell Gilbert [EMAIL PROTECTED] wrote: fredthetree [EMAIL PROTECTED] writes: Is there a control somewhere to flip the stereo signal of the soundcard? I don't think so; why wouldn't you

Re: Problem with wireless USB keyboard/mouse combo

2005-05-13 Thread Lowell Gilbert
Matt Navarre [EMAIL PROTECTED] writes: This is with FreeBSD 4.11-RELEASE with no atkbd or psm drivers in the kernel and a SiS 5571 USB controller. Anybody have any idea how to get this working, or have a recommendation for a USB keyboard/mouse combo that will work with freeBSD and a KVM

Re: FreeBSD 5.4 apache vs. apache+mod_ssl and mod_php4 dependencies.

2005-05-13 Thread Clifton Royston
On Fri, May 13, 2005 at 07:20:49AM -0700, Joe Capali wrote: Back in the day...4.9-RELEASE you were able to install apache+mod_ssl and mod_php4. Now 5.4-RELEASE requires apache as a dependency to install mod_php4 and fails with apache+mod_ssl already installed. Don't know if this is a problem

Re: tripwire in 5.4

2005-05-13 Thread Lowell Gilbert
Tim Traver [EMAIL PROTECTED] writes: seems that tripwire is not updated to run 5.4... Are there any plans to have the port updated ? Sure. Those plans came to fruition a month ago. Update your ports, and the tripwire port should build. It requires an old gcc version, though, so you'll have

Re: Network interface counters

2005-05-13 Thread Roland Smith
On Thu, May 12, 2005 at 12:45:18PM -0400, Chad Morland wrote: I was wondering if there is a FreeBSD equivalent to /proc/net/dev from Linux. I am trying to get bit and packet counter info from my network devices. Try getifaddrs(3). For every interface, the data you want is found in the ifa_data

Re: Setting up ntpd on FreeBSD (5.4)

2005-05-13 Thread Michal Mertl
Rob wrote: Michal Mertl wrote: /etc/ntp directory isn't used by default on 5.4. The default location for ntp.drift file is /var/db. I've never created it by hand (not even by 'touching' it), it gets created automatically. No, there's no such default as /var/db/ntp.drift. It's either

TTY dmesg output

2005-05-13 Thread fredthetree
I've just found it a little inconvienent that FreeBSD dumps dmesg output into ttyv0. Here's why. If you start up the system, and log in on ttyv0, all your X errors (ie, poor mpegs) are thrown into the same console as your dmesg output. I much prefer the way certain other unices have set things

Re: backup

2005-05-13 Thread Matt Juszczak
Problem with this is that I have to then create a tar file on the remote machine, because if I login with sftp from my remote machine, that account wont have access to read all the files it needs to read. -Matt On Fri, 13 May 2005, Hexren wrote: Howdy, My server has an 18 gig drive in it. I'm

Re: backup

2005-05-13 Thread Mark Bucciarelli
Matt Juszczak wrote: Problem with this is that I have to then create a tar file on the remote machine, because if I login with sftp from my remote machine, that account wont have access to read all the files it needs to read. you can: - create a password-protected ssh cert for root - load key

Migrating to a newer version of FreeBSD

2005-05-13 Thread Lisa Casey
Hi Folks, I have had a Redhat box that was running my radius authentication and sendmail. Several weeks ago the hard drive in this box crashed. Naturally :-( I didn't have a backup. This created an emergency - my users could not get authenticated and could not get email. I didn't have time to

problem building sendmail+sasl FIXED

2005-05-13 Thread Robert Huff
Karol Kwiatkowski writes: For what it's worth (since nobody replied yet) I've got these in make.conf (5.4-RELEASE, 5.2.1-5.3-R previously): SENDMAIL_CFLAGS+= -I/usr/local/include -DSASL=2 SENDMAIL_LDFLAGS+= -L/usr/local/lib SENDMAIL_LDADD+=-lsasl2 This

mysqlcc error code

2005-05-13 Thread Gary Schenk
The installation of mysql 4.1 went smoothly, and it is running fine (unlike when I tried to install it on my SUSE 9.1 laptop ), however when I tried to install mysqlcc I got this: ../../../../../local/include/mysql/mysql.h:469: error: too few arguments to function `int mysql_shutdown(MYSQL*,

Re: can't build firefox 1.0.4 on 4.10

2005-05-13 Thread Timothy Smith
Alex Zbyslaw wrote: Timothy Smith wrote: Or try: setenv LIBIDL_CONFIG `which libIDL-config-2` or it {ba,z}sh equivalent. --Alex ok i just did the following ( i must have mis typed the first tiem or something ) and the ./configure finished, but it get Makefile, line 406: Missing dependency

ASUS A8V-E onBoard Gigabit Ethernet Marvell 88E8053 Chipset

2005-05-13 Thread Matt
Any word on a driver for this chipset? It doesn't seem to be detected at all. I have read here: http://sources.zabbadoz.net/freebsd/if_sk.html that it's not yet supported by the sk driver, however other chips of a similar type are supported. Is there any word on if it's supported anywhere by

Re: about FreeBSD 4.11

2005-05-13 Thread Kevin Kinsey
Marko Bukovinsky wrote: When its runs ask me for login and password and i dont know them. What to type for login and password? Well, without sounding too mean or antagonistic, have you tried your login account name and the corresponding password? Is it *your* computer? When FreeBSD was

Re: Migrating to a newer version of FreeBSD

2005-05-13 Thread Kevin Kinsey
Lisa Casey wrote: Hi Folks, I have had a Redhat box that was running my radius authentication and sendmail. Several weeks ago the hard drive in this box crashed. Naturally :-( I didn't have a backup. This created an emergency - my users could not get authenticated and could not get email. I

[no subject]

2005-05-13 Thread vizion
Hi Is there a port of Sun's latest Netbeans IDE j2se + v 1.4.2_08 SDK WITH Netbeans available for freebsd 5.3? If not has anyone successfully installed Sun's package with linuxemulation? Or are there any alternative solutions? Thanks David ___

Hints for small file system

2005-05-13 Thread mail.schatti.ch
If you had to choose amongst the available filesystems on 5.4 to contain just about 500kB to a MB, which would you use, and with what parameters ? Which of these has the lowest administration overhead, the lowest space overhead ? TIA George ___

video card

2005-05-13 Thread crzdgns1
Hello All, Is there are better driver for my video card than the standard, generic vga0 driver? My video card is a Diamond Viper v550 vidoe card which uses the nVidia Riva TNT chip. The card uses the AGP interface and has 8 MB of SDRAM. The rest of the important parts of my system are as

Re: your mail

2005-05-13 Thread Dan Nelson
In the last episode (May 13), [EMAIL PROTECTED] said: Is there a port of Sun's latest Netbeans IDE j2se + v 1.4.2_08 SDK WITH Netbeans available for freebsd 5.3? If not has anyone successfully installed Sun's package with linuxemulation? Or are there any alternative solutions? Netbeans 4.0 is

Java latest

2005-05-13 Thread vizion
Hi Sorry first postedthis without a subject line Is there a port of Sun's latest Netbeans IDE j2se + v 1.4.2_08 SDK WITH Netbeans available for freebsd 5.3? If not has anyone successfully installed Sun's package with linuxemulation? Or are there any alternative solutions? Thanks David

Re: Java latest [was Re: your mail]

2005-05-13 Thread vizion
From: Dan Nelson [EMAIL PROTECTED] Date: 2005/05/13 Fri PM 03:30:08 PDT To: [EMAIL PROTECTED] CC: freebsd-questions@freebsd.org Subject: Re: your mail In the last episode (May 13), [EMAIL PROTECTED] said: Is there a port of Sun's latest Netbeans IDE j2se + v 1.4.2_08 SDK WITH

Re: Java latest [was Re: your mail]

2005-05-13 Thread Dan Nelson
In the last episode (May 13), [EMAIL PROTECTED] said: From: Dan Nelson [EMAIL PROTECTED] In the last episode (May 13), [EMAIL PROTECTED] said: Is there a port of Sun's latest Netbeans IDE j2se + v 1.4.2_08 SDK WITH Netbeans available for freebsd 5.3? If not has anyone successfully

Long-standing sound driver issues

2005-05-13 Thread Doug Lee
I'll try this on FreeBSD-Questions first, then FreeBSD-Stable if I don't get an answer here; not sure which is best. I run FreeBSD-Stable (4.10) with two sound cards: a SoundBlaster AWE64 and a Turtle Beach Santa Cruz. I use two because I can't get full duplex with one. I've always had several

Re: Migrating to a newer version of FreeBSD

2005-05-13 Thread Tony Shadwick
I see two ways you can go about this: 1. Get your radius conf file, and your /etc/master.passwd file. Build a new FreeBSD 5.4 server. Install the following from ports: - portinstall - portmanager - portupgrade - portdowngrade - freebsd-update Update your ports and src via cvsup. Install your

Re: can't build firefox 1.0.4 on 4.10

2005-05-13 Thread Alex Zbyslaw
Timothy Smith wrote: ./configure gets *** The libIDL-config script installed by libIDL could not be found *** If libIDL was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the LIBIDL_CONFIG environment variable to the *** full path to libIDL-config. checking for

bittorrent client

2005-05-13 Thread Paulo Roberto
Hello, Any suggestions? I have been using ctorrent, but I am getting a lot of files it shows that it has downloaded 100%, but if I start it again (to seed) it was fully completed. thanks, Paulo __ Do You Yahoo!? Tired of spam? Yahoo! Mail has

Re: bittorrent client

2005-05-13 Thread Tony Shadwick
Azureus http://azureus.sf.net On Fri, 13 May 2005, Paulo Roberto wrote: Hello, Any suggestions? I have been using ctorrent, but I am getting a lot of files it shows that it has downloaded 100%, but if I start it again (to seed) it was fully completed. thanks, Paulo

Re: 5.4 package install woes.... :(

2005-05-13 Thread Bill Schoolcraft
At 13 May 2005 it looks like Lowell Gilbert composed: Bill Schoolcraft [EMAIL PROTECTED] writes: So, while kde3 is still building from ports I copied both full iso images to my new FreeBSD box in hopes of maybe mounting them in loopback and offering the two ISO images up via

setup 5.4 NFS install server?

2005-05-13 Thread Steve Rikli
What's the best way to setup the repository of files from 5.4-RELEASE for NFS installation purposes? In earlier releases, because we usually had CDs/ISOs laying around, we'd simply dump the entirety of -disc1 onto the NFS server's exported filesystem and the right thing happened during installs.

Re: NFS freeze

2005-05-13 Thread horio shoichi
On Thu, 12 May 2005 22:03:40 -0500 Kelly D. Grills [EMAIL PROTECTED] wrote: On Fri, May 13, 2005 at 02:52:52AM +0200, Pietro Cerutti wrote: Kelly D. Grills wrote: Have a look at section 23.3.5 of the handbook. -r=1024 cured my problems. Thank you, this solves the problem when

Re: 5.4 package install woes.... :(

2005-05-13 Thread Bill Schoolcraft
At 13 May 2005 it looks like Lowell Gilbert composed: Bill Schoolcraft [EMAIL PROTECTED] writes: So, while kde3 is still building from ports I copied both full iso images to my new FreeBSD box in hopes of maybe mounting them in loopback and offering the two ISO images up via

5.4, switching disks during install...

2005-05-13 Thread Bill Schoolcraft
Hello Family, Was installing 5.4 and decided to pick some packages from the sysinstall menu and found myself being prompted every 2 or 3 packages to take out disk-1 to install disk-2 then take out disk-1 and install disk-2 etc Yes, I've installed ports and will work off that now. In

5.4 package install woes... :(

2005-05-13 Thread Bill Schoolcraft
Hello Family, Well, it's been two days now of watching both from work and from home the building of /usr/ports/x11/kde3 and I started this thinking it would be an hour or two adventure for after about 19 inserting/reinserting of disks 1 then 2 then 1 then 2 etc of just trying to do what I've

Re: Problem with wireless USB keyboard/mouse combo

2005-05-13 Thread Matt Navarre
On Friday 13 May 2005 11:19 am, Lowell Gilbert wrote: Matt Navarre [EMAIL PROTECTED] writes: This is with FreeBSD 4.11-RELEASE with no atkbd or psm drivers in the kernel and a SiS 5571 USB controller. Anybody have any idea how to get this working, or have a recommendation for a USB

Re: 5.4 package install woes... :(

2005-05-13 Thread Alejandro Pulver
mount /dev/md1 /mnt/loop1 mount: /dev/md1 on /mnt/loop1: incorrect super block mount /dev/md2 /mnt/loop2 mount: /dev/md2 on /mnt/loop2: incorrect super block Hello, I think you have to add -t cd9660 (like when mounting a normal CDROM, otherwise FreeBSD tries to mount it as a normal UFS

sendmail NOINET6=true

2005-05-13 Thread Abu Khaled
This message appears after building amd installing world and kernel using the NOINET6=true in /etc/make.conf. sendmail[1579]: NOQUEUE: SYSERR(root): /etc/mail/sendmail.cf: line 279: Unknown address family inet6 in Family=option No one uses the Server for sending mail, so I don't know if it is a

hidden file attribute

2005-05-13 Thread Joshua Lewis
Is there a hidden file attribute in FreeBSD as there is in Windows? If so how do I unset it? Or allow certain users to be able to view the files without unsetting it. Sincearly, Joshua Lewis [EMAIL PROTECTED] mobile: 951-637-9190 ___

Re: incoming mail access issue

2005-05-13 Thread Paul Keyes
Hi, Thanks for the questions. I am using Sendmail as an MTA: *) is your mailserver a public service or a local one ? I can't figure out how to configure this. How do I do it? I've tried modifying my /etc/mail/hostname.mc and running: make make install make restart ...but I can't find clear

Re: sendmail NOINET6=true

2005-05-13 Thread Abu Khaled
On 5/14/05, Abu Khaled [EMAIL PROTECTED] wrote: This message appears after building amd installing world and kernel using the NOINET6=true in /etc/make.conf. sendmail[1579]: NOQUEUE: SYSERR(root): /etc/mail/sendmail.cf: line 279: Unknown address family inet6 in Family=option No one uses

  1   2   >