Re: Setting MAXDSIZ, MAXSSIZ, DFLDSIZ via kernel OIDs?

2005-02-24 Thread Dan Nelson
these in subr_param.c: TUNABLE_QUAD_FETCH(kern.maxdsiz, maxdsiz); TUNABLE_QUAD_FETCH(kern.dfldsiz, dfldsiz); TUNABLE_QUAD_FETCH(kern.maxssiz, maxssiz); -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: Directory not empty

2005-02-24 Thread Dan Nelson
rebooting and letting the bgfsck run again, or boot into single-user mode and run fsck -p on the filesystem. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Directory not empty

2005-02-24 Thread Dan Nelson
then run bgfsck? Can I run this myself without rebooting? Actually running a 2nd bgfsck probably won't work, since it'll just hit the same problem. A regular fsck has to be run on a dismounted volume, and booting single-user is the easiest way of doing that. -- Dan Nelson

Re: FreeBSD 5.3 dev nodes

2005-02-25 Thread Dan Nelson
don't have to do anything; just pop your disk in, run camcontrol rescan all, and use the /dev/da1 that magically appears. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman

Re: Constant mysterious SCSI errors

2005-02-26 Thread Dan Nelson
. I never know what to look for in this output, but most of the time, I think it's a cabling or termination problem. Reseat all the plugs :) -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http

Re: iSCSI support?

2005-02-28 Thread Dan Nelson
-February/001740.html -- 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: tab completion

2005-03-01 Thread Dan Nelson
In the last episode (Mar 01), Ben Munat said: Why doesn't tab completion in the shell work for my regular (non-root) user? That depends on what shell the shell refers to, of course. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd

Re: Perl out of memory [sbrk()]

2005-03-01 Thread Dan Nelson
? Maybe different perl versions allocate memory differently. -- 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: Where do the linker look for shared libraries?

2005-03-02 Thread Dan Nelson
to `_poly_zbuf_atex_trans8' /usr/local/lib//liballeg.so: undefined reference to `_poly_scanline_atex_mask_lit32' This is the linker saying there are symbols in liballeg.so that I cannot find anywhere. Maybe you need to specify another library along with liballeg? Are you using the allegro port? -- Dan

Re: Where do the linker look for shared libraries?

2005-03-02 Thread Dan Nelson
In the last episode (Mar 02), Andreas Davour said: On Wed, 2 Mar 2005, Dan Nelson wrote: In the last episode (Mar 02), Andreas Davour said: I've tried to compile and link a small game written with the Allegro API. For some odd reason the linker just don't understand how to resolve the symbols

Re: Received mail timestamp is off by 7 hours

2005-03-02 Thread Dan Nelson
a buildworld because NTP kept tinkering with the clock in the middle of the process. Two options: You can tell ntp to never step the clock by adding the -x flag, or you can increase the slew rate by fiddling with /sys/kern/kern_ntptime.c . You may need to do both. -- Dan Nelson

Re: FreeBSD NFS client and Netware 6.5 NFS server

2005-03-02 Thread Dan Nelson
fetches one of these recently-updated files, do you see it doing an ACCESS/GETATTR on the target files at all? -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Stable device names for USB disks?

2005-03-02 Thread Dan Nelson
and disk. - Use geom_label, label your FAT32 or ufs filesystems, and always mount /dev/msdosfs/blah or /dev/ufs/blah -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: Stable device names for USB disks?

2005-03-02 Thread Dan Nelson
In the last episode (Mar 02), John Pettitt said: Dan Nelson wrote: - Use geom_label, label your FAT32 or ufs filesystems, and always /mount dev/msdosfs/blah or /dev/ufs/blah Very cool - I built a stripe set whihc is showing up fine a /dev/stripe/data2 but I can't get a single volume

Re: SCSI problem on a IBM xSeries x206

2005-03-03 Thread Dan Nelson
Controller' HostRAID is software-based RAID, similar to the software ATA RAID managed by the ataraid driver and the atacontrol command. An enterprising coder could probably modify geom_mirror to recognize whatever disk metadata that HostRAID stores. -- Dan Nelson [EMAIL PROTECTED

Re: FreeBSD NFS client and Netware 6.5 NFS server]

2005-03-03 Thread Dan Nelson
the relationship between vfs.nfs.access_cache_timeout and the ag{reg,dir}{min,max} mount_nfs flags. Original Message Subject: Re: FreeBSD NFS client and Netware 6.5 NFS server Date: Wed, 2 Mar 2005 17:55:24 -0600 From: Dan Nelson [EMAIL PROTECTED] To: Bob Johnson [EMAIL PROTECTED

Re: Which lib for pthreads?

2005-03-05 Thread Dan Nelson
In the last episode (Mar 05), Jonathon McKitrick said: Linux lets me use -pthread, but under BSD I get 'undefined symbol pthread_mutex_lock.' What's the correct linker syntax for pthreads? That would be it. It should work on 4.* and 5.*. -- Dan Nelson [EMAIL PROTECTED

Re: Which lib for pthreads?

2005-03-07 Thread Dan Nelson
at one time, but I can't find any documentation to back that up. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: Question on SCSI controllers and camcontrol

2005-03-07 Thread Dan Nelson
to your kernel config file? -- 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: Question on SCSI controllers and camcontrol

2005-03-07 Thread Dan Nelson
In the last episode (Mar 07), Anthony Atkielski said: Dan Nelson writes: Run camcontrol devlist -v. That will print out which controller each scbus is attached to. Maybe you have a dual-channel SCSI card, or have added device atapicam to your kernel config file? Here's what I get

Re: vt220 and wrong pgup, pgdn, home and end keys

2005-03-07 Thread Dan Nelson
is to run screen (which emulates a vt100 terminal with some ANSI extensions), then connect to the remote system. If that doesn't work, try the comms/wy60 port and set your TERM to wy60 when you log into the remote system. In all cases, leave your local TERM set to cons25. -- Dan Nelson

Re: ttydX and xterm size (LINES and COLUMNS understanding)

2005-03-07 Thread Dan Nelson
no equivalent for serial lines. You can get the screen size from vt100 terminals (and many emulators) though, by moving the cursor to the far lower-right corner, asking the terminal for the cursor position, and reading the result on stdin. -- Dan Nelson [EMAIL PROTECTED

Re: ttydX and xterm size (LINES and COLUMNS understanding)

2005-03-08 Thread Dan Nelson
In the last episode (Mar 08), Emanuel Strobl said: Am Dienstag, 8. Mrz 2005 08:29 schrieb Dan Nelson: In the last episode (Mar 08), Emanuel Strobl said: When I open a xterm on the local machine, say with 100x37, vi and man recognizes the size and display the content correctly. If I use

Re: Quota problems

2005-03-09 Thread Dan Nelson
to create the quota files than touching them. It ensures that existing files on the filesystem are correctly accounted for. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: ipfw IP ranges

2005-03-09 Thread Dan Nelson
: As an example, an address specified as 1.2.3.4/24{128,35-55,89} will match the following IP addresses: 1.2.3.128, 1.2.3.35 to 1.2.3.55, 1.2.3.89 . Although I think a much better syntax would be 1.2.3.{128,35-55,89}. -- Dan Nelson [EMAIL PROTECTED

Re: Highly Available Print Servers

2005-03-09 Thread Dan Nelson
print jobs on the print server itself, you will want to also have shared storage so if server A dies, server B can mount the spool volume and continue servicing the queued jobs. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions

Re: Quota problems

2005-03-09 Thread Dan Nelson
of your problem; I only know that they're not doing any good :) -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

Re: Native POSIX threads + Java under FreeBSD 5.3 release i386

2005-03-10 Thread Dan Nelson
- more straightforward installation of the platform (at the expense of not knowing the particular intricacies of those Linuxes). Help/opinions are very much appreciated. :) -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org

Re: how to change process limits?

2005-03-10 Thread Dan Nelson
why those limits are boot-time tunables as opposed to regular sysctls, or why they exist at all. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: fsck errors on a running system that disappear in single-user mode

2005-03-10 Thread Dan Nelson
at filesystems that are changing right in front of its eyes on a running system, which leads to inconsistencies that really don't mean anything ... right? Correct. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list

Re: how to change process limits?

2005-03-11 Thread Dan Nelson
In the last episode (Mar 10), Chad Leigh -- Shire.Net LLC said: On Mar 10, 2005, at 2:46 PM, Dan Nelson wrote: In the last episode (Mar 09), Chad Leigh -- Shire.Net LLC said: The following is aon 5.3-RELEASE-p5 If I do a limits command I get # limits Resource limits (current

Re: chmod equivalent to find commands

2005-03-12 Thread Dan Nelson
but i think it's wrong: chmod -R u+rwX,a+rX That chmod command should work just fine. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe

Re: Why not?

2005-03-12 Thread Dan Nelson
their own custom patchsets, installers, bug databases, etc. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

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]

Re: umass0 -- yes, daX -- no?

2005-03-15 Thread Dan Nelson
print the hex IDs you need), and copy one of the existing DISKONKEY array entries in umass.c. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: what pop deamon to use with postfix ?

2004-07-05 Thread Dan Nelson
one you want. Your choice of MTA doesn't affect the programs that end up reading the mailboxes. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe

Re: /rescue is huge!!

2004-07-05 Thread Dan Nelson
manpage, and while it might be a nice thing to fall back on, I can't justify it over being able to add user accounts. You missed this section: The /rescue tools are compiled using crunchgen(1), which makes them considerably more compact than the standard utilities. -- Dan Nelson

Re: /rescue is huge!!

2004-07-05 Thread Dan Nelson
with cp (instead of a tar pipe or something else that preserves hardlinks), you would have gotten a separate file for each link. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo

Re: lame w/o lame

2004-07-05 Thread Dan Nelson
://www.mp3licensing.com/ -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Recovering compile after loss of power

2004-07-06 Thread Dan Nelson
check for and remove 0-byte *.o files first (find . -name -*.o size 0). I have occasionally seen them after a crash. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd

Re: Recovering compile after loss of power

2004-07-06 Thread Dan Nelson
In the last episode (Jul 06), Dan Nelson said: In the last episode (Jul 06), Trey Sizemore said: I was many hours into a kde3 complilation/installation when the power went out at the house. :-(. Is the best option here to just restart the 'make install clean' in the directory again

Re: tcpdump (/dev/bpf* permission) in FreeBSD-current

2004-07-07 Thread Dan Nelson
Matches any node with a path that matches pattern. The latter is interpreted as a glob(3)-style pattern. So just use bpf* instead of bpf0 in your devfs rule. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED

Re: Bacula installation problems

2004-07-08 Thread Dan Nelson
FreeBSD 4.5. If you're running something older, you will have to build a newer libc (preferably a new world). I'm not sure why your gettext build decided that the system had nl_langinfo, though. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL

Re: max mount points

2004-07-08 Thread Dan Nelson
; why = Client credential too weak If I restart mountd with the -n flag to allow use of unprivileged ports, the error just changes: mount_nfs: /tmp/test/0377: Can't assign requested address -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL

Re: NIS server selection

2004-07-08 Thread Dan Nelson
ypbind gets restarted i would like it to revert back to using it. The best you can do is make sure ypwhich points to the local machine so that subsequent processes will use it. You can't force existing processes to switch. -- Dan Nelson [EMAIL PROTECTED

Re: symlink

2004-07-08 Thread Dan Nelson
links. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: NIS server selection

2004-07-08 Thread Dan Nelson
In the last episode (Jul 08), Doug Hardie said: On Jul 8, 2004, at 13:44, Dan Nelson wrote: The best you can do is make sure ypwhich points to the local machine so that subsequent processes will use it. You can't force existing processes to switch. Thanks. I have now set 3 servers

Re: Corrupt list archives?

2004-07-09 Thread Dan Nelson
this? -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Corrupt list archives?

2004-07-09 Thread Dan Nelson
In the last episode (Jul 09), John Murphy said: Dan Nelson [EMAIL PROTECTED] wrote: In the last episode (Jul 09), John Murphy said: While browsing the freebsd-questions archives at freebsd.org and via google, I noticed that corruption occurs, under some circumstances, where = becomes =3D

Re: HDD Sizes reported wrong?

2004-07-10 Thread Dan Nelson
/faq/disks.html#DISK-MORE-THAN-FULL -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: PATH var and more...

2004-07-11 Thread Dan Nelson
both of your problems at once by removing /usr/local/mysql and installing the /usr/ports/databases/mysql40-client and mysql40-server ports :) -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman

Re: Confusion / minor problem using nss_ldap

2004-07-12 Thread Dan Nelson
-created files/dirs inherit the group owner of their parent directory. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL

Re: Redirecting Output Into The Copy Buffer

2004-07-12 Thread Dan Nelson
of a terminal command into the X buffer? Then I can run something like this: 5 # dmesg [wherever the X buffer is] Take a look at the x11/xclip port; I think it does what you want. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing

Re: mmap()ed filenames?

2004-07-14 Thread Dan Nelson
through the kernel's file name cache and print at least some names. FreeBSD 5.x's /proc/*/map does the same thing for you. If you use lsof, for any files missing filenames, you can try and find the name by running find / -inum , where is the number in the NODE column. -- Dan

Re: Prepocessing in ipfw

2004-07-14 Thread Dan Nelson
they work. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Need a network file system with Windows client and freeBSD server

2004-07-14 Thread Dan Nelson
the local IP number that gets assigned to each VPN user, so you could use that to filter access in /etc/exports (and use the -mapall flag to force specific userids for each incoming IP). -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL

Re: Need a network file system with Windows client and freeBSD server

2004-07-14 Thread Dan Nelson
to pass through. The exact packet type depends on the VPN; a tcpdump of some part of the network between client and natd will show that (Ethereal installed directly on the client PC should also work). -- Dan Nelson [EMAIL PROTECTED

Re: which port is xterm from

2004-07-16 Thread Dan Nelson
? If you have portupgrade installed, pkg_which will tell you: $ pkg_which xterm XFree86-clients-4.3.0_8 $ pkg_info -o XFree86-clients-4.3.0_8 Information for XFree86-clients-4.3.0_8: Origin: x11/XFree86-4-clients -- Dan Nelson [EMAIL PROTECTED

Re: Our package system: Fundamentally Flawed - A Linux User.

2004-07-19 Thread Dan Nelson
they can be updated more frequently. I'll let someone else answer your questions about frequency of port builds and why pkg_add doesn't fetch the latest ones. You can take a look at http://bento.freebsd.org and/or http://pointyhat.freebsd.org to see when the last full package buld was. -- Dan

Re: save-entropy cronjob Added: not found every 10 minutes

2004-07-19 Thread Dan Nelson
guess is something in your rc.conf is doing it. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: @conflicts in /var/db/pkg/*/+CONTENTS

2004-07-20 Thread Dan Nelson
mount point names or anything during the install :) -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: setuid diffs...

2004-07-23 Thread Dan Nelson
203992 Jul 16 12:07:28 2004 /sbin/ping It looks like the only difference is the inode number, which is reasonable since you copied the files to a new disk. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http

Re: US BC001

2004-07-26 Thread Dan Nelson
, and the last 4 are the vendor ID. Add them to /sys/pci/if_rlreg.h (search for VENDORID) and to /sys/pci/if_rl.c (search for rl_devs), rebuild your kernel, and reboot. If it works, submit a pr with the info so it can be added to the next release. -- Dan Nelson [EMAIL PROTECTED

Re: question...

2004-07-27 Thread Dan Nelson
with cvsup. http://www.freebsd.org/handbook/cvsup.html -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Console 50-lines at bootup?

2004-07-27 Thread Dan Nelson
mode to recover. (Probably a good thing that I had to learn about single-user!) :) I would like the system to boot up into VGA_80x50 and green on black, and I'm stumped. This should work: allscreens_flags=-m on 80x50 green black (-m on enables the mouse) -- Dan Nelson

Re: Console 50-lines at bootup?

2004-07-27 Thread Dan Nelson
to set different virtual terminals to different settings. The startup scripts basically run vidcontrol $allscreens_flags, once for each vty. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org

Re: Is there a Complete Package(NOT Ports) for: [Apache+PHP+MySQL+Mod_SSL+Mod_Perl] ?? - newbie+3

2004-07-28 Thread Dan Nelson
to be a port, whatever it is. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: DLT device not configured errors

2004-07-28 Thread Dan Nelson
in the kernel; that allows non-disk devices to pass through the raid controller and be seen by FreeBSD. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: netstat -m 'cannot allocate memory'

2004-07-29 Thread Dan Nelson
and world are out of sync. At minimum, rebuild libkvm and netstat. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL

Re: netstat -m 'cannot allocate memory'

2004-07-29 Thread Dan Nelson
also need to rebuild systat, sockstat, netstat, lsof, and possibly other programs, which is why a buildworld is usually recommended. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo

Re: [OT] 64-bit PCI in 32-bit slots??? crazy??

2004-07-30 Thread Dan Nelson
. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: upgrading gcc-2.95 to gcc-3.3

2004-08-01 Thread Dan Nelson
and pick which one to use whenever you want. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Bandwidth Limiting

2004-08-03 Thread Dan Nelson
configure to run at 90% of your true capacity): ipfw add 400 skipto 402 ip from any to any uid root ipfw add 401 pipe 1 ip from any to any Hopefully ipfw will soon get the ability to use ALTQ which was recently merged into -current, so you can do some more advanced limiting. -- Dan

Re: Fwd: How to read bad blocks error message marking of same

2004-08-06 Thread Dan Nelson
, may do automatic reallocation on both reads and writes ( camcontrol mode da0 -m 1, the ARRE and AWRE flags ). If the drive had to reread the block or had to use ECC to recover data, AND the entire block was recovered, it will relocate the data if ARRE is set. -- Dan Nelson [EMAIL

Re: 5.2-current: device pcm

2004-08-07 Thread Dan Nelson
more sense :) Also read the 20040716 entry in /usr/src/UPDATING. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL

Re: order of starting services at boot?

2004-08-10 Thread Dan Nelson
scripts. For instance, if I would like to start ipfw before dhclient (right now dhclient starts, then ipfw starts), how would I accomplish this? Add ipfw to dhclient's REQUIRE line. This change was made to -current, so when 5.3 ships it'll already do what you want :) -- Dan Nelson

Re: IMAP Prefrence

2004-08-11 Thread Dan Nelson
in ports I'm too lazy to type into this message. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: tmpfs for FreeBSD?

2004-08-11 Thread Dan Nelson
and then have most of its files deleted, the free blocks can be pushed out to swap. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail

<    2   3   4   5   6   7   8   9   10   11   >