Re: When does swap decreases

2005-06-20 Thread Dan Nelson
In the last episode (Jun 20), Francisco Reyes said: On Mon, 20 Jun 2005, Dan Nelson wrote: When the system is low on memory, it will force the least used blocks of memory to swap. It will not free the swap space until the process owning them exits Have not found any program to see what

Re: When does swap decreases

2005-06-20 Thread Dan Nelson
In the last episode (Jun 20), Francisco Reyes said: On Mon, 20 Jun 2005, Dan Nelson wrote: In the last episode (Jun 20), Francisco Reyes said: How wonder how the current method affects performance. Basically if there is a surge of memory usage and processes start that use the swap

Re: OT: usage of split

2005-06-19 Thread Dan Nelson
assume you can cat text files into a new file using redirection (); but can you do that with a binary file? cat basename.* newfile -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: GnuPG in the enterprise

2005-06-16 Thread Dan Nelson
In the last episode (Jun 16), Tony Shadwick said: On Wed, 15 Jun 2005, Dan Nelson wrote: In the last episode (Jun 15), Tony Shadwick said: Are there any good documents out there on managing GnuPG in the enterprise? There are basic issues I need to be able to address, such as a situation

Re: GnuPG in the enterprise

2005-06-15 Thread Dan Nelson
special Revoker keys and Additional Decryption keys that get added when files are signed, so files are always encrypted to multiple recipients and keys are always revokable even if the original key no longer exists. gpg doesn't recognize ADKs, though. -- Dan Nelson [EMAIL

Re: OT: GnuPG

2005-06-14 Thread Dan Nelson
that is the cipher text is different? Probably either a timestamp or a random seed is encoded along with the file, to make it difficult for a 3rd party to determine whether two encrypted files came from the same plaintext. -- Dan Nelson [EMAIL PROTECTED

Re: Makefile question

2005-06-13 Thread Dan Nelson
: target in your port Makefile and install the files yourself. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: Makefile question

2005-06-13 Thread Dan Nelson
/appname ? If not, then the configure script of the Makefile is broken, and you will need to patch it or install the files yourself. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: Makefile question

2005-06-13 Thread Dan Nelson
In the last episode (Jun 13), Dan Nelson said: In the last episode (Jun 13): Oh, I didn't mean that. Both the configure script and the application Makefile are working. What I mean is, that the configure script doesn't let me to specify --libdir, --bindir, ... Thus a lot of files would

Re: Problems with command line scratch files in zsh

2005-06-12 Thread Dan Nelson
.* because 4.* creates 64 /dev/fd/* device nodes on install. If for some reason zsh had more than 64 files open already, it would have failed even on 4.*. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: Port trunking or link aggregation under FreeBSD ?

2005-06-12 Thread Dan Nelson
=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500 You'll want to use the ng_fec netgraph node. See the ng_fec manpage for the syntax. It doesn't support LACP autonegotiation, though, so you will have to manually set a matching configuration on your swtich. -- Dan Nelson [EMAIL

Re: new hotswap drive not seen in SCSI scan without reboot?

2005-06-10 Thread Dan Nelson
that would have done it too. My hope was to probe for the SCSI drive and find it while the system was fully up. Try camcontrol rescan all to tell the kernel to rescan all the scsi busses. Otherwise there's no way for it to know you added a device. -- Dan Nelson [EMAIL PROTECTED

Re: new hotswap drive not seen in SCSI scan without reboot?

2005-06-10 Thread Dan Nelson
In the last episode (Jun 10), D. Goss said: On Jun 10, 2005, at 6:42 PM, Dan Nelson wrote: Try camcontrol rescan all to tell the kernel to rescan all the scsi busses. Otherwise there's no way for it to know you added a device. Sorry, forgot something quick - I'm reading the MAN pages

Re: portupgrade, automake14 - automake19

2005-06-09 Thread Dan Nelson
. Install the automake19 port and start running automake19 instead of automake14. Both ports will live happily side by side. If you are talking about updating a port to use a different version of automake, just edit the WANT_AUTOMAKE_VER line in the Makefile. -- Dan Nelson [EMAIL

Re: portupgrade, automake14 - automake19

2005-06-09 Thread Dan Nelson
* $ACLOCAL -I . $AUTOHEADER $AUTOMAKE --add-missing $AUTOCONF -- 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

Re: g++ successfully compiled Hello World program causes segfault at runtime

2005-06-09 Thread Dan Nelson
::_Impl () from /usr/lib/libstdc++.so.4 Do you have any locale environment variables set? The program runs fine on my machine. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: FTP Log

2005-06-09 Thread Dan Nelson
. -- 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]

Re: 12TB GEOM stripe, newfs, then fsck: cannot alloc 768053748 bytes for blockmap

2005-06-08 Thread Dan Nelson
you right, or did you just say that the default amount of RAM that FreeBSD allows in the kernel is 512MB without throwing that switch at compile time You can also set it in /boot/loader.conf: kern.maxdsiz=1024M -- Dan Nelson [EMAIL PROTECTED

Re: Looking for files older than n number of days?

2005-06-06 Thread Dan Nelson
to be specified. The expression evaluates to true if both expressions are true. The second expression is not evaluated if the first expression is false. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions

Re: Looking for files older than n number of days?

2005-06-06 Thread Dan Nelson
In the last episode (Jun 06), Francisco Reyes said: On Mon, 6 Jun 2005, Dan Nelson wrote: OPERATORS The primaries may be combined using the following operators. The operators are listed in order of decreasing precedence. [...] expression -and expression expression

Re: Permissions on ps

2005-06-06 Thread Dan Nelson
kern.proc.all to get the process list. You can force it to use /dev/kmem with the -M and -N commandline flags, but those are usually used to debug crashdumps, not live systems. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org

Re: Looking for files older than n number of days?

2005-06-05 Thread Dan Nelson
, or find . -mtime +5d, depending on whether you want 5 days as of the next midnight, or 5 days as of when find was started. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: Looking for files older than n number of days?

2005-06-05 Thread Dan Nelson
In the last episode (Jun 05), Francisco Reyes said: On Sun, 5 Jun 2005, Dan Nelson wrote: find . -mtime +5 , or find . -mtime +5d, depending on whether you want 5 days as of the next midnight, or 5 days as of when find was started. How do those flags work? +5 = changed during last five

Re: linux /proc/{meminfo,procinfo}

2005-06-03 Thread Dan Nelson
;) # sysctl hw yes, indeed ;) Why not dmesg? uptime ~14 days, and dmesg doesn't output anymore the boot messages Try /var/run/dmesg.boot , or the cpuid or x86info ports. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: Enabling acpi_thermal

2005-05-31 Thread Dan Nelson
acpi sysctl variables are present, but the hw.acpi.thermal family is missing. You'll probably have better luck by installing xmbmon and either setting up an exec line in snmpd.conf that runs mbmon -T1 -c1, or writing a little cgi that runs mbmon, and polling that remotely. -- Dan

Re: ftp server frustrating

2005-05-31 Thread Dan Nelson
. I am really asking why does it have to be so short - what is the reason? Try sending an email to the address listed in the welcome message sent before you log into ftp.beastie.tdk.net: 220-Contact: beastie at tdk.net -- Dan Nelson [EMAIL PROTECTED

Re: ftp server frustrating

2005-05-31 Thread Dan Nelson
In the last episode (May 31), Vizion said: On Tuesday 31 May 2005 13:00, the author Dan Nelson contributed to the dialogue on- Re: ftp server frustrating: ftp.freebsd.org is actually 2 machines; the one at 62.243.72.50 (ftp.beastie.tdk.net) seems to have the 15 second timeout. The one

Re: epoch-calendar date(1) wizardry

2005-05-29 Thread Dan Nelson
/%m/%y date -r $(cat t) +%H:%M:%S %d/%m/%y -- 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]

Re: Statically linked bash

2005-05-25 Thread Dan Nelson
./builtins -L./lib/readline -L./lib/readline -L./lib/glob -L./lib/tilde -L./lib/sh -static -static -rdynamic -g -O2 -o bash shell.o You need to get rid of the -rdynamic option. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions

Re: roxen rnNG start script needed

2005-05-25 Thread Dan Nelson
/init.d_roxen extra_commands=reload start_cmd=${roxeninit} start stop_cmd=${roxeninit} stop ; run_rc_command poll reload_cmd=${roxeninit} reload run_rc_command $1 -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing

Re: libiptc equivalent in FreeBSD ipfw

2005-05-24 Thread Dan Nelson
and print to stdout. -- 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]

Re: tracking down network load?

2005-05-23 Thread Dan Nelson
, and what kind of load it is handling? sockstat or lsof -i will tell you which sockets belong to which processes, and tcpdump or any of a dozen or so programs in ports will give you detailed network usage. Start with trafshow and iftop. -- Dan Nelson [EMAIL PROTECTED

Re: Rewinding tapes

2005-05-19 Thread Dan Nelson
the rewind operation has finished. mt rewind is synchronous on all the tape drive I have used it on (dat, dlt, 9-track, 3490). -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: Rewinding tapes

2005-05-19 Thread Dan Nelson
In the last episode (May 19), Jonathan Belson said: Dan Nelson wrote: mt rewind is synchronous on all the tape drive I have used it on (dat, dlt, 9-track, 3490). Apologies, it's 'tar' that seems to return when the drive is still busy - attempting to access the tape device before it's

Re: Shared /usr/ports directories

2005-05-19 Thread Dan Nelson
effect another. It works great here. You don't have to worry about settings because they aren't stored in /usr/ports. If you want to build ports on multiple machines at once (and also run a bit faster), set WRKDIRPREFIX to a local path in /etc/make.conf . -- Dan Nelson [EMAIL

Re: Tracking down kern.ipc.maxpipekva exceeded

2005-05-19 Thread Dan Nelson
PIPE should do the trick. Lsof's SIZE/OFF column shows the allocated buffer size for that pipe. Most of the time you'll see either 0 (pipe has never been used) or 16384 (default value). -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: The availability of socketbits.h?

2005-05-17 Thread Dan Nelson
there have been some autoconf changes make in CVS after 1.1.16 was released. You might want to check out the current source to see if some of these issues have been fixed already. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions

Re: The availability of socketbits.h?

2005-05-17 Thread Dan Nelson
In the last episode (May 17), Xu Qiang said: Dan Nelson wrote: It looks like missing.h was added in 1.1.15, but the author didn't run all the necessary autoconf commands afterwards. Try running autoheader253 (you will see that a HAVE_FTRUNCATE placeholder gets added to config.h.in

Re: The availability of socketbits.h?

2005-05-17 Thread Dan Nelson
In the last episode (May 18), Xu Qiang said: Dan Nelson wrote: That's because after including the header that provides a declaration for random (stdlib.h), the author decided to include another of his own for some reason, but he used the wrong return type so gcc complained. Just remove

Re: The availability of socketbits.h?

2005-05-17 Thread Dan Nelson
In the last episode (May 18), Xu Qiang said: Dan Nelson wrote: That for loop should really read: for(i=0; icommand_count; i++) { , since command_count should already be set to COUNTOF(command_list) by a previous call to command_init(). Thank you, Dan. Your fix works! Still

Re: The availability of socketbits.h?

2005-05-16 Thread Dan Nelson
26 #include assert.h -- 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]

Re: Fiber Channel

2005-05-14 Thread Dan Nelson
?? There are no Emulex drivers for FreeBSD as far as I know. There are drivers for Qlogic (isp) and LSI (mpt), however. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Video card support

2005-05-13 Thread Dan Nelson
compatible with anything. You want to look at www.X.org or www.XFree86.org for X support. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe

Re: your mail

2005-05-13 Thread Dan Nelson
is in ports; I assume an update to 4.1 will be arriving shortly. Since Sun doesn't provide a FreeBSD JDK it will build the java/jdk14 port if you don't have 1.4 or 1.5 installed already. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

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

Re: SU Question

2005-05-12 Thread Dan Nelson
: setting user context: Operation not permitted Check the permissions on /usr/bin/su. They should be -r-sr-xr-x If they aren't, run chmod a=rx,u+s /usr/bin/su as root to fix it. You'll probably need to do this directly from the console, since you can't use su :) -- Dan Nelson

Re: user owned groups

2005-05-11 Thread Dan Nelson
(but only the ones taking their classes), or delegating access while an employee is on vacation. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: cannot kill -9 a process

2005-05-10 Thread Dan Nelson
the ps manpage to decode the flags). On 5.3 I would occasionally see threaded processes hang when multiple threads tried to fork at once, but they usually freed themselves up after 20 seconds or so. If that's the case, upgrading to 5.4 will help. -- Dan Nelson [EMAIL PROTECTED

Re: message on my cell phone

2005-05-10 Thread Dan Nelson
. The message bounced, and the bounce message ended up on your cellphone. I don't think anyone at freebsd.org was responsible. It's possible the sending address was randomly generated. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: Low HDD tranfer rate with FreeBSD 5.3-Release

2005-05-09 Thread Dan Nelson
the relative speeds from start to finish. For the DiamondMax 160, the sustained throughput should be 26MB - 50MB as you go from inner to outer tracks. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: starting mysql server automatically

2005-05-09 Thread Dan Nelson
like it got installed right: if test -z $basedir then [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ [EMAIL PROTECTED]@ else bindir=$basedir/bin sbindir=$basedir/sbin fi The @xxx@ blocks should have been replaced with paths to /usr/local/something . -- Dan

Re: Low HDD tranfer rate with FreeBSD 5.3-Release

2005-05-09 Thread Dan Nelson
devices, and using large blocksizes are faster then writing, using a filesystem, and using small blocksizes, so all three changes probably contributed a little to the speed difference. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: *_enable = YES for FreeBSD

2005-05-09 Thread Dan Nelson
In the last episode (May 10), Foo Ji-Haw said: Thanks. I'm just reading up on rcNG. Apparently it's been implemented on 4.10 onwards iianm. rnNG proper is a 5.* feature, but ports that use it will depend on the rc_subr port so 4.* machines still work. -- Dan Nelson [EMAIL

Re: timestamps/datestamps in history output?

2005-05-06 Thread Dan Nelson
In the last episode (May 06), Clement Twine said: does anyone know how the history output can display date/timestamps? If you use zsh, run history -i. If you want timestamps in your ~/.history file as well, add setopt extendedhistory to your zsh startup script. -- Dan Nelson

Re: A beautiful dmesg! Maybe one day?

2005-05-06 Thread Dan Nelson
0x64,0x60 on isa0 It's easy enough to change the format string in subr_bus.c:device_print_prettyname() to pad out the devicename. However, you may prefer to just put up a splash screen (see the splash manpage), so the user doesn't even see the kernel messages at all. -- Dan Nelson

Re: NovaNet

2005-04-29 Thread Dan Nelson
lot more expensive :) -- 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]

Re: GRUB problems

2005-04-27 Thread Dan Nelson
this working? You probably don't have ufs support built into grub. I find it easier to just chain to the bootblock instead: root(hd0,2) chainloader +1 -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: makewhatis oddness (weekly run output)

2005-04-23 Thread Dan Nelson
. -- 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]

Re: DLT tape / no streaming

2005-04-20 Thread Dan Nelson
of 10k is too small. Try 64k (tar cvb 128 /usr, for example). -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: Heartbeat

2005-04-17 Thread Dan Nelson
ping uid=root -- 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]

Re: Starting applications automaticaly

2005-04-16 Thread Dan Nelson
xhost +, su, xbattbar and then I have to leave the terminal window open. Xfce is just a window manager, right? Run xbattbar in whatever script file you start xfce from (usually .xinitrc). -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: 5.8TB RAID5 SATA Array Questions

2005-04-15 Thread Dan Nelson
In the last episode (Apr 15), Nick Evans said: You'll need to use GPT to make this work for anything over 2TB. Man gpt Or don't bother with a partition table at all, which makes growing the filesystem later on quite a bit easier. -- Dan Nelson [EMAIL PROTECTED

Re: 5.8TB RAID5 SATA Array Questions

2005-04-15 Thread Dan Nelson
the filesystem without the extra step of manually adjusting a partition table. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any

Re: Routing question?

2005-04-14 Thread Dan Nelson
In the last episode (Apr 14), Kurt Buff said: Dan Nelson wrote: In the last episode (Apr 13), Kurt Buff said: I have a FreeBSD 5.3 box running postfix/amavisd-new/spamassassin/clamav. Currently, we have two entrances to our network, one is the Watchguard FBIII for our T1, the other is a PC

Re: Routing question? second reply

2005-04-14 Thread Dan Nelson
In the last episode (Apr 14), Kurt Buff said: Dan Nelson wrote: In the last episode (Apr 13), Kurt Buff said: I have a FreeBSD 5.3 box running postfix/amavisd-new/spamassassin/clamav. Currently, we have two entrances to our network, one is the Watchguard FBIII for our T1, the other is a PC

Re: Routing question?

2005-04-13 Thread Dan Nelson
an alias IP in the SOHO's default 192.168.111/24 network if you can't get the SOHO to use your exisitng Trusted network as its trusted network). I have a Firebox 1000 and a SOHO at work but don't have the SOHO's password on me so I can't tell you exactly what to set where :) -- Dan Nelson

Re: NFS4 server

2005-04-12 Thread Dan Nelson
In the last episode (Apr 12), Feczak Szabolcs said: is there a well tested nfs4 server for freebsd out there ? The only one so far is the one at ftp://ftp.cis.uoguelph.ca/pub/nfsv4/ . The author ([EMAIL PROTECTED]) claims it's stable. -- Dan Nelson [EMAIL PROTECTED

Re: net-snmp and mrtg question

2005-04-10 Thread Dan Nelson
/get-ipfw-stats 1000 1001` -- 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]

Re: Cross-development of Windows 32-bit applications under FreeBSD?

2005-04-10 Thread Dan Nelson
targeted to build native win32 binaries. -- 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]

Re: gcc 3.4.3 compile with fbsd 5.3

2005-04-09 Thread Dan Nelson
, just build it from ports (lang/gcc34). -- 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]

Re: strange kern.ngroups problems

2005-04-06 Thread Dan Nelson
)? What does id nisuser print? -- 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]

Re: xorg -configure fails

2005-04-06 Thread Dan Nelson
In the last episode (Apr 06), Bill said: Im trying to install Xorg. I get an error message failed to open /dev/io for extended IO First check: Do you have a /dev/io device? Make sure you haven't removed device io from your kernel config file. -- Dan Nelson [EMAIL PROTECTED

Re: Viewing DNS cache entries

2005-04-05 Thread Dan Nelson
/var/dump/named_dump.db; , then run rndc reconfig and rndc dump. The dumpfile will end up in /var/named/var/dump/named_dump.db. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: question about mysql-server.sh

2005-04-05 Thread Dan Nelson
enable or disable the script, or modify options without editing the startup script itself and having their local changes blown away the next time they update the port. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org

Re: ftp problems

2005-04-05 Thread Dan Nelson
for ai_socktype Just run ftp username.customer.netspace.net.au, then enter your username and password at the prompts. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: 4.12 release

2005-04-05 Thread Dan Nelson
to FreeBSD 5 Release? Already done. 5.3 was marked -STABLE and recommended over 4.*. And the ports will be updated for use with FBSD 5? (at least, if you want to keep up to date?) Ever since 5 was branched in 2002. -- Dan Nelson [EMAIL PROTECTED

Re: flockfile does not work with stdout (on

2005-04-05 Thread Dan Nelson
|SHARED memory and wait on a flag byte with atomic_cmpset(). Actually, writing to stdout should be atomic for most writes (I have never seen gcc output garbled when doing parallel makes for example). -- Dan Nelson [EMAIL PROTECTED

Re: Determining what port owns a file

2005-04-04 Thread Dan Nelson
) -- 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]

Re: 1001:1001::0:0

2005-04-03 Thread Dan Nelson
gid, the next empty field is the login class (see the login.conf manpage), and the next two fields are the password and account expiry times (which are currently unused). -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org

Re: su: illegal option -- s

2005-04-02 Thread Dan Nelson
there. Try su - $RunasUser -c $KohaZ3950Shell -- 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]

Re: Sendmail 8.13.4?

2005-03-30 Thread Dan Nelson
in advance because it takes such a long time to build the set of packages. If there is a critical fix in 8.13.4, it may get committed despite the freeze. You'll have to check with the maintainer though. -- Dan Nelson [EMAIL PROTECTED

Re: Sendmail 8.13.4?

2005-03-29 Thread Dan Nelson
for the upcoming release of FreeBSD 5.4. -- 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]

Re: strcoll(3) case sensitivity?

2005-03-28 Thread Dan Nelson
is ache's commit back in 1996 in /usr/src/share/colldef: 1996-06-09 12:24 ache * la_LN.ISO8859-1.src, la_LN.ISO_8859-1.src, lt_LN.ISO_8859-1.src: Make collation table compatible with POSIX WG15 view, i.e. capital letters first -- Dan Nelson [EMAIL PROTECTED

Re: Updated on SATA drive problem

2005-03-26 Thread Dan Nelson
to me when I launch smartd on all my machines, but it's intermittent and doesn't seem to affect anything (I get periodic temerature notifications after that with no timeout errors). See PR misc/73833 . -- Dan Nelson [EMAIL PROTECTED

Re: looking for a shell editor

2005-03-25 Thread Dan Nelson
... That's actually your pager doing that. Joe's terminal emulator when in shell mode is exceedingly simple, only understanding newline and backspace. You can run man radeon | cat to avoid going through any pagers, and just use pgup/down to page through the text from within joe. -- Dan Nelson

Re: looking for a shell editor

2005-03-24 Thread Dan Nelson
can open two files at the same time/ Try editors/joe-devel (which should probably be renamed to plain editors/joe) -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: Discrepancy between ps -i -o inblk and figuring numbers by hand

2005-03-24 Thread Dan Nelson
vfs.read_max to 32 will greatly increase sequential read performance on fast RAID arrays. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: Discrepancy between ps -i -o inblk and figuring numbers by hand

2005-03-24 Thread Dan Nelson
currently opened by pid ###, and their current offset. -- 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

Re: Proper way to add 3rd party milters?

2005-03-23 Thread Dan Nelson
the milter, create an rc script to start it up, and print a message asking the user to add the appropriate INPUT_MAIL_FILTER macro to their .mc file. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: c++filt

2005-03-22 Thread Dan Nelson
In the last episode (Mar 22), Andrea Venturoli said: Dan Nelson wrote: In the last episode (Mar 21), Andrea Venturoli said: Dan Nelson wrote: I'm reverting to the mailing list, since this is possibly getting interesting for other people too. The change was also committed

Re: c++filt

2005-03-21 Thread Dan Nelson
In the last episode (Mar 21), Andrea Venturoli said: The above program (from gcc) doesn't exist in base system, and AFAIK no ports installs it. It will be in 5.4; it was accidentally broken during the gcc 3.4.2 import and no-one noticed. -- Dan Nelson [EMAIL PROTECTED

Re: tcpdump question

2005-03-21 Thread Dan Nelson
it on tcpdump capture files, or let it capture packets itself. -- 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

Re: source code for pam modules

2005-03-21 Thread Dan Nelson
and tacplus. pam_tacplus is part of the base system. Take a look at /usr/src/lib/libpam/modules/pam_tacplus , or if you don't have a full source tree checked out yet: http://www.freebsd.org/cgi/cvsweb.cgi/src/lib/libpam/modules/pam_tacplus/ -- Dan Nelson [EMAIL PROTECTED

Re: Increasing system message buffer size

2005-03-21 Thread Dan Nelson
the only way to do it. It might be possible to convert it into a tunable (which would let you set it in /boot/loader.conf), but I don't know how early in the boot process tunables are available. The default is 32768 (see /sys/sys/msbguf.h). -- Dan Nelson [EMAIL PROTECTED

Re: FTPD and Internet Explorer 6.0

2005-03-20 Thread Dan Nelson
have to disable anonymous logins (add the 'ftp' user to to /etc/ftpusers). If MSIE is able to log in anonymously when given a plain ftp://host URL, it will not display a login box (since it doesn't need to). ProFTPD probably has anonymous logins disabled by default. -- Dan Nelson

Re: SMART and bad block list?

2005-03-17 Thread Dan Nelson
. -- 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]

Re: newsyslog

2005-03-17 Thread Dan Nelson
the manpage): $M1D0 rotate at the first day of every month at midnight (i.e., the start of the day; same as @01T00) -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: What's difference between iconv and libiconv ports?

2005-03-16 Thread Dan Nelson
In the last episode (Mar 16), Stas Myasnikov said: Could anyone tell me what's difference between iconv and libiconv ports? iconv is a BSD-licensed charset conversion library (doesn't seem to have been unpdated since 2000), libiconv is the GNU one that most programs expect. -- Dan

Re: Makefiles compatible with both BSD and GNU make?

2005-03-16 Thread Dan Nelson
in the source). Automake is the usual way around compatibility issues; it has its own conditional syntax that it expands out when it generates the Makefile, and will create the appropriate dependency lines. -- Dan Nelson [EMAIL PROTECTED

Re: questions regarding $PAGER

2005-03-15 Thread Dan Nelson
on that behaviour. -- 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]

<    5   6   7   8   9   10   11   12   13   14   >