Re: Exact timestamp for sorting and renaming files according to creation order

2012-01-03 Thread Dan Nelson
7;ve read the manuals for stat as well as for strftime (which is the > facility stat's -t parameter addresses), but found nothing that is more > precise than seconds. > > Does anyone have a suggestion how to precisely determine the order files > have been created? -- Dan Ne

Re: Exact timestamp for sorting and renaming files according to creation order

2012-01-03 Thread Dan Nelson
In the last episode (Jan 03), Polytropon said: > On Tue, 3 Jan 2012 14:49:02 -0600, Dan Nelson wrote: > > If you ask for the date to be printed in "float" (F) format, it gives > > more precision. The default is unsigned int (U) format. > > > > % stat -

Re: Network throughput

2012-01-11 Thread Dan Nelson
orks. You will have to tell mrtg to make SNMPv2 requests for the 64-bit OIDs to appear, but that's it. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo

Re: little things

2012-01-11 Thread Dan Nelson
but the best solution is probably to poll them with snmp. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to &q

Re: Clarification about AMD64 port for Core Duo

2012-01-12 Thread Dan Nelson
ttp://ark.intel.com/products/family/22731 , hit the "Select All" button, and then "Compare now". -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mail

Re: Problems with libz since libz.so.5 is gone...

2012-01-26 Thread Dan Nelson
8x port to get libz.so.5 back until you can replace diablo-jdk16 with openjdk6. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsub

Re: Identifying at jobs

2012-02-01 Thread Dan Nelson
man at: -c Cat the jobs listed on the command line to standard output. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubs

Re: setuid directories - or other option?

2012-02-05 Thread Dan Nelson
tside of the standard unix mode system: setfacl -m group:foo:rwx:df:allow /path That will grant the "foo" group read/write/execute access on all files under "/path" , regardless of the regular owner/group/umask settings. Also, make sur

Re: setuid directories - or other option?

2012-02-05 Thread Dan Nelson
tside of the standard unix mode system: setfacl -m group:foo:rwx:df:allow /path That will grant the "foo" group read/write/execute access on all files under "/path" , regardless of the regular owner/group/umask settings. Also, make sur

Re: NTFS 4 Terabyte drive problems on FreeBSD?

2013-02-12 Thread Dan Nelson
ks out fine in Windows. > > Does anyone know if this limitation exists, and if there is a > work-around? I only need READ access to this drive. You can try the sysutils/fusefs-ntfs port; the ntfs code in the base system hasn't had much work done on it l

Re: Upgrade from 6.4 to 9.1?

2013-03-16 Thread Dan Nelson
but it'd be safer to either hop from 6.4 -> (7-stable or 8-stable) -> 9 doing buildkernels and buildworlds, or just do a binary upgrade of kernel and base system to 9.1. -- Dan Nelson dnel...@allantgroup.com ___ freebsd

Re: Copying memstick image to a USB (flash/thumb) drive

2013-03-27 Thread Dan Nelson
to tape). conv=sync isn't needed since the source file is already a multiple of the target device blocksize (512 bytes), and bs=64k would be much faster when writing to cheap flash devices like USB sticks since they don't have a write cache and individual writes are slowish. --

Re: question on manpages/hier(7)

2013-05-09 Thread Dan Nelson
an/ directory at all, and have 7300 files in /usr/local/man/man?/ , so I'd say /usr/local/man/ is the correct location :) -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.

Re: check variable content size in sh script

2013-05-16 Thread Dan Nelson
ck length of" > FOOLEN=`echo $FOO | wc | awk '{print $3}'` > > You can then use $FOOLEN in a conditional. Much better way: FOO="Some string you want to check length of" FOOLEN=${#FOO} -- Dan Nelson dnel...@allantgroup.com _

Re: ZFS: raid VS copies=n

2013-06-07 Thread Dan Nelson
ing_tape https://blogs.oracle.com/relling/entry/zfs_copies_and_data_protection -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubsc

Re: apply /etc/ttys changes on system

2013-06-19 Thread Dan Nelson
, getty, or window information) may be changed in the ttys(5) file without a reboot by sending the signal SIGHUP to init with the command ``kill -HUP 1''. On receipt of this signal, init re-reads the ttys(5) file. -- Dan Nelson dnel...@allantgroup.com

Re: showing CAPSLOCK state on display

2013-06-20 Thread Dan Nelson
keyboard status leds > > Port: gkleds2-0.8.2_6 > Path: /usr/ports/sysutils/gkleds2 > Info: GKrellM Leds for CapsLock, NumLock and ScrollLock > > But don't look at the dependency lists, they're terrible. :-) xkbvleds and xkbwatch might also do what you wa

Re: How to get file from nfs id

2013-07-11 Thread Dan Nelson
ou can't get tcpdump to print it, but the getattr reply does include the inode of the file. If you start up wireshark and capture the same packets (or open a capture file created by tcpdump), the inode is stored in the "nfs->obj_attributes->attributes->fileid" field. Yo

Re: TRIM and changing mount options

2013-07-23 Thread Dan Nelson
ary geom providers, but you can see whether zfs successfully sent any TRIM requests by watching the output of "sysctl kstat.zfs.misc.zio_trim". If .zio_trim.success increments and .unsupported (or .failed) doesn't, then you know that it's working. -- Dan Nelson

Re: TRIM and changing mount options

2013-07-24 Thread Dan Nelson
In the last episode (Jul 23), aurfalien said: > On Jul 23, 2013, at 7:55 PM, Dan Nelson wrote: > > In the last episode (Jul 23), aurfalien said: > >> At any rate, could some one; > >> > >> a) Explain how I am loading my file system as I'm used to fst

Re: TRIM on ZFS mirror

2013-08-02 Thread Dan Nelson
ol built on geom mirrors, it'll work on that, too, since gmirror forwards BIO_DELETE requests to its components. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listi

Re: Archiving a log file

2013-08-03 Thread Dan Nelson
just work. Don't be afraid of signals. Without signalling the logging process to switch to a new logfile, and without suspending the process while you do your copy, there's always going to be a window where you risk losing logged data. -- Dan Nelson dnel...@al

Re: UUID in fstab.

2013-08-26 Thread Dan Nelson
or each provider, including the uuid for each GPT partition. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: Geom Multipath

2013-09-13 Thread Dan Nelson
;, which will build a temporary device that will be forgotten on reboot, or "gmultipath label", which writes a metadata block to the end of your disk. -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list h

Re: test if script called by cron

2013-09-16 Thread Dan Nelson
arent, almost certainly cron" ;; esac -- Dan Nelson dnel...@allantgroup.com ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: munin related

2013-10-07 Thread Dan Nelson
e. > *** [build] Error code 1 > > Stop in /usr/ports/sysutils/munin-node. > > > Do you have any  idea what can cause this? > The ports are up to date. Do you have nscd caching enabled? It sometimes doesn't realize immediately that users/groups have been added to the s

Re: IPFW pipe command

2005-12-17 Thread Dan Nelson
kopt(IP_DUMMYNET_CONFIGURE): Protocol not available > > I have added firewall_enable="YES" in rc.conf > > Is there a setting I need to set or change Ipfw pipes and queues are part of the dummynet traffic shaper. You will need to rebuild your kernel with "opt

Re: what's an equivalent for the following Perl one-liner?

2005-12-22 Thread Dan Nelson
> What's the sed's equivalent? Thanks! sed -E 's,[ ^M]*$,,' < in > out Note the ^M is a single control-character (entered via Ctrl-V Ctrl-M at a shell prompt for example). sed does not parse backslash-escapes except for \n which re

Re: GLIBC_2.3 required ...

2005-12-23 Thread Dan Nelson
its libc.so.6 version is GLIBC_2.3.3. Then again, why are you running a Linux binary? The mysql41-server and mysql50-server ports should install a native ndb_mgm. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing

Re: Forth include ?

2005-12-25 Thread Dan Nelson
place I can get documentation on it? > > Looking through the source it appears it's not stricly speaking > Forth, but rather FICL. > > http://ficl.sourceforge.net/ > > FWIW I have seen include in older, pre-ansi, versions of forth. It

Re: Sendmail X port

2005-12-28 Thread Dan Nelson
a lot > simpler (at the expense of some very powerful capabilities that were > very rarely used). So it's not as though there is some reason > somebody is trying to keep it *out* of the ports system. It is in ports, as mail/smx . -- Dan Nelson [EMAIL PROTECTED] _

Re: Is there a Freebsd equivalent to this Linux header file

2005-12-28 Thread Dan Nelson
. That's probably a Linux-specific ioctl. Chances are that FreeBSD's ifconfig command will do what you want (so its sources are a good place to start looking); what do you mean by "change it's operating mode"? -- Dan Nelson [EMAIL PROTECTED] __

Re: squid cache export

2005-12-28 Thread Dan Nelson
ory to the new server and make sure the new server's squid.conf cache settings match the old one. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions T

Re: Is there a Freebsd equivalent to this Linux header file

2005-12-29 Thread Dan Nelson
In the last episode (Dec 29), Ray Seals said: > On Wed, 2005-12-28 at 14:42 -0600, Dan Nelson wrote: > > That's probably a Linux-specific ioctl. Chances are that FreeBSD's > > ifconfig command will do what you want (so its sources are a good > > place to star

Re: What's using my system?

2006-01-01 Thread Dan Nelson
is large. Switch to libc_r or libthr (you can use libmap.conf to redirect individual programs) to get useful CPU stats. Artsd's cpu usage is very suspicious, since it shouldn't be doing anything but sending sound samples to /dev/pcm. -- Dan Nelson [EMAIL PROTECTED] ___

Re: Where should I address fixes for /usr/src/lib/libc/rpc code to?

2006-01-01 Thread Dan Nelson
In the last episode (Jan 02), Aluminium Oxide said: > Ive been fixing code in /usr/src/lib/libc/rpc and would like to know > where I should address my attention (and code fixes) to. According to src/MAINTAINERS, alfred@ is the go-to guy for rpc code. -- Dan Nelson

Re: Shellscript syntax question

2006-01-09 Thread Dan Nelson
> > > '05' was the value of $episode_first and '01' was the value of > $episode_last You want "-lt" not "<". "<" is a file redirect, which is why the shell complained that it couldn't find a file named "05". I also ass

Re: Shellscript syntax question

2006-01-09 Thread Dan Nelson
In the last episode (Jan 09), Frank Staals said: > Dan Nelson wrote: > >In the last episode (Jan 09), Frank Staals said: > > > >>I'm trying to write a ( simple ) shellscript to move files arround, > >>for this reason I wanted to check wether 

Re: NIC bonding/teaming

2006-01-13 Thread Dan Nelson
ctually negotiate the FEC protocol with the remote end (you have to hardcode it on the switch), but does do mac/ip port hashing. That prevents packet reordering within flows. Patches to add LACP negotiation (FEC is obsolete) are welcome though :) -- Dan Nelson [EMAIL

Re: unable to build ntp

2006-01-16 Thread Dan Nelson
contrib is just where the original distribution files live. -- 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: External USB drive on Sun HW

2006-01-16 Thread Dan Nelson
shows: > > [EMAIL PROTECTED] usbdevs -v > Controller /dev/usb1: > addr 1: full speed, self powered, config 1, OHCI root hub(0x), > (0x108e)(0x), rev 1.00 > port 1 addr 2: full speed, self powered, config 1, product 0x0702(0x0702), > vendor 0x05e3(0x05e3), rev 0.33 > p

Re: Lua 5.0 and FreeBSD 4.1

2006-01-17 Thread Dan Nelson
x27;cos' > /usr/local/lib//liblualib.a(lmathlib.o): In function 'math_tan': > lmathlib.o(.text+0xca): undefined reference to 'tan' > > In what version of FreeBSD (or libc) these functions (sin, cos, tan, > ...) were imple

Re: FreeBSD and the Mexican jumping drive assignments

2006-01-17 Thread Dan Nelson
sk names to stay constant for other reasons, you can wire down devices in /boot/device.hints to appear at specific places (documented in the scbus manpage): hint.scbus.0.at="ahc0" hint.da.0.at="scbus0" hint.da.0.target="1" etc. -- Dan Nelson [EMAIL P

Re: Automount on FreeBSD?

2006-01-21 Thread Dan Nelson
mentation, and/or references to manpages. amd is included in the base system. Just add amd_enable="yes" to /etc/rc.conf . The default mountpoints are /net and /host (same behaviour). -- Dan Nelson [EMAIL PROTECTED] ___ fr

Re: truss and procfs strange problem.

2006-01-26 Thread Dan Nelson
after a short wait (but only doing so for a couple seconds in case there was a problem starting the child process). I have no idea why the PIOCWAIT ioctl would fail like that; the code path doesn't look like it's even able to return EIO. -- Da

Re: cannot find -ldl

2006-01-26 Thread Dan Nelson
'm > missing? It's not needed on FreeBSD. The dlopen family of functions is in libc. The configure script should probably have something like this in it so it only uses libdl if it can't find dlopen with its current set of libs:: AC_SEARCH_LIBS(dlopen, dl) --

Re: cannot find -ldl

2006-01-26 Thread Dan Nelson
In the last episode (Jan 26), Paul Schmehl said: > --On Thursday, January 26, 2006 11:18:54 -0600 Dan Nelson <[EMAIL > PROTECTED]> wrote: > >In the last episode (Jan 26), Paul Schmehl said: > >>I'm fiddling with an app that was probably written for/on Linux. &g

Re: cannot find -ldl

2006-01-26 Thread Dan Nelson
In the last episode (Jan 26), Paul Schmehl said: > --On Thursday, January 26, 2006 14:12:49 -0600 Dan Nelson > <[EMAIL PROTECTED]> wrote: > >>> > >>> It's not needed on FreeBSD. The dlopen family of functions is in > >>> libc. The conf

Re: "screen" alternative

2006-01-26 Thread Dan Nelson
compiled package that people had problems with. -- 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: truss and procfs strange problem.

2006-01-26 Thread Dan Nelson
continue tracing these processes if you run "truss -p ", since that's pretty much what they're waiting for :) -- 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: Proper FreeBSD installation practices

2006-01-31 Thread Dan Nelson
k this mainly to > find out about common practices. Easier to just set named_program=/usr/local/sbin/named in rc.conf and use the included rc.d/named startup script. I thought this was documented in the port somewhere, but apparently not. The rc.d/named script tells named to chroot itse

Re: Proper FreeBSD installation practices

2006-01-31 Thread Dan Nelson
In the last episode (Jan 31), Dan Nelson said: > In the last episode (Jan 31), Alvaro J. Gurdin said: > > Should I let the install go to it's default location, rename > > /usr/sbin/named to /usr/sbin/named9.3.1 and then symlink > > /usr/local/sbin/named to /usr/sbin/

Re: How does FreeBSD handle devices under /compat/linux?

2006-02-01 Thread Dan Nelson
itioning, since the ioctls are different between FreeBSD and Linux and I don't see any translation code for MTIOCTOP in /sys/compat/linux/linux_ioctl.c . -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing l

Re: cloop or zisofs or a better way?

2006-02-04 Thread Dan Nelson
ows tools for mounting filesystem images in general apart from daemontools which only does ISO images). -- 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: Best Way To Block Range of Addresses with ipfw2?

2006-02-08 Thread Dan Nelson
0.0/16, for example. > > Thanks. I found that too but was just wondering if there was a way > to be exact. You could use an ipfw table to store the required subnets that cover your range; according to the manpage it's the most efficient way to store large address se

Re: Replacing cron with mcron

2006-02-09 Thread Dan Nelson
tion it's written in guile, so you'd have to import that too. -- 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: jdk1.4.2 port and incorrect manpath

2006-02-09 Thread Dan Nelson
ying them in particular. > >1) Do I need recompile man? >2) Is the port broken?: I did not see a bug for it, nor a list post. >3) Is there something else I'm missing? Add "OPTIONAL_MANPATH /usr/local/jdk1.4.2/man" to /etc/manpath.config, and you should be set.

Re: Replacing cron with mcron

2006-02-09 Thread Dan Nelson
> To work around #2, I find something like daemontools or runit a nicer > way to solve the problem. Lockfile from the promail port works for me. You could probably use /usr/bin/lockf also. -- Dan Nelson [EMAIL PROTECTED] ___ free

Re: Tracking Security in Ports and Base System

2006-02-10 Thread Dan Nelson
s. > >You might want to install security/portaudit, however, which is a > >very useful tool. > > Which makes me finally throw out a question I've been wondering > about. Is there no way of getting a specific tagged ports tree, if > you'd like to get a ports

Re: (no subject)

2006-02-12 Thread Dan Nelson
en, lseek, read, and write. Just open the raw disk device and treat it like a regular file, and remember you need to access it in 512-byte chunks. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://li

Re: Blocking an individual email address

2006-02-15 Thread Dan Nelson
vers local and outgoing delivery as well. If you add To:[EMAIL PROTECTED]REJECT then no-one will be able to send mail to that user from your site. See http://www.sendmail.org/m4/anti_spam.html#access_db_fine . -- Dan Nelson [E

Re: Blocking an individual email address

2006-02-15 Thread Dan Nelson
er in this document. > any ideas? Try posting your question to the comp.mail.sendmail newsgroup; search the archives at http://groups.google.com/group/comp.mail.sendmail first, though. Someone must have wanted to do what you're trying before. --

Re: /bin/sh Madness

2006-02-16 Thread Dan Nelson
/.$1-end } & so your end timestamp always gets created whether or not $3 succeeds. Also note that in your original script, you only backgrounded "touch $2/.$1-end", which is probably not what you wanted. -- 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: 80 pin SCSI hard drives.

2006-02-17 Thread Dan Nelson
apter. Running over a year, zero observed > problems. Same here. I think we've used SCA adapters from three different vendors and never had problems. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing li

Re: sendmail autoresponder

2006-02-17 Thread Dan Nelson
27;t really the MTA's job, so if you have used some other tool with another MTA, use it here. -- 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: /bin/sh Madness

2006-02-17 Thread Dan Nelson
In the last episode (Feb 17), Tim Daneliuk said: > Dan Nelson wrote: > >Could your $3 command be returning a nonzero exit code? You probably > >want something more like > > > >touch $2/.$1-begin && { eval $3 2>&1 >> $log ; touch $2/.$1-end } &a

Re: ports/databases/mysql50-server: where is mysql_upgrade ?

2006-02-22 Thread Dan Nelson
.0.19 hasn't been released yet, but I expect that when it is, and the port is updated to build it, the command will be available. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org

Re: Can I use UTF-8 encoding at the FreeBSD console?

2006-02-23 Thread Dan Nelson
In the last episode (Feb 23), a said: > Can I use UTF-8 encoding at the FreeBSD console? No; since text consoles can only display 256 characters at a time anyway, it wouldn't do much good. -- Dan Nelson [EMAIL PROTECTED] ___

Re: Build on one CPU, run on different ones? (AMD, VIA, Intel)

2006-02-26 Thread Dan Nelson
't set any -march= flags in make.conf, the binaries should run fine on any x86 cpu. -- 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: Help building gcc41 with gcj from ports on FreeBSD 4.10

2006-02-27 Thread Dan Nelson
thanks Comment out the "WITHOUT_JAVA=yes" line in the port Makefile, but be aware that you may need more than 1GB of RAM to build it. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/

Re: Help building gcc41 with gcj from ports on FreeBSD 4.10

2006-02-27 Thread Dan Nelson
uot; will regenerate the checksums in the distinfo 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: loader.conf != limits?

2006-02-27 Thread Dan Nelson
omething be up? 1073741824/1024 is 1048576, which is what the limit command shows. The stack size hasn't changed because you didn't set kern.dflssiz. You can also set the default sizes in /etc/login.conf. -- Dan Nelson [EMAIL PROTECTED] ___

Re: Is gd library in the ports collection.

2006-02-28 Thread Dan Nelson
> in the ports collection. graphics/gd -- 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: milter-greylist question

2006-03-02 Thread Dan Nelson
greylist is using ( /usr/local/etc/mail/greylist.conf by default), and if you have made changes make sure you restart milter-greylist. Maybe adding the -l or -v debugging flags will help determine what the problem is? -- Dan Nelson [EMAIL PROTECTED]

Re: making a vfat file system?

2006-03-08 Thread Dan Nelson
In the last episode (Mar 08), Andrew Spott said: > I'd like to make a vfat filesystem out of a external hdd I just > bought. However, I can't seem to figure out how to do it. > > I odn't know what port to install to get the mkfs.vfat program. I think you want /sbin/n

Re: Regarding the (apparent) removal of syslogd_program functionality in recent versions

2006-03-14 Thread Dan Nelson
d="/usr/sbin/${name}" line from /etc/rc.d/syslogd, then setting syslogd_program will work again. There's already a default syslogd_program="/usr/sbin/syslogd" line in /etc/defaults/rc.conf, so hardcoding it in the startup script was unnecessar

Re: some questions about fsck, loader.conf

2006-03-14 Thread Dan Nelson
above > switch not fix all problems or is it the case the fsck bootup script > only does partial tests? A read-only fsck of a mounted filesystem will never come back clean, since the filesystem's mounted :) -- Dan Nelson [EMAIL PROTECTED] ___

Re: unfamiliar mount points /net /host

2006-03-18 Thread Dan Nelson
en you cd out of the directory. /hosts does the exact same thing. Amd is part of the base system, so is unaffected by port upgrades. Those directories were most likely always there; you just never noticed them. -- Dan Nelson [EMAIL PROTECTED] ___

Re: Why the usage of disks exceed %100 in systat command ?

2006-03-21 Thread Dan Nelson
e; utilization can't exceed 100% in real life. -- 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: how to locate file by inode?

2006-03-22 Thread Dan Nelson
c27643cc lpd 532 root4wW VREG 4,194639 /var/spool/output/lpd.lock lpd 532 root5u unix 0xc286e144 0t0/var/run/printer lpd 532 root6u IPv4 0xc288e8ac 0t0TCP *:printer (LISTEN) -- Dan Nelson [EMAIL PROTECTED] _

Re: Will adding ATAPICAM confuse my SCSI R/W CDROM?

2006-03-24 Thread Dan Nelson
to k3b. I just want to make sure that > adding ATAPICAM won't somehow get in the way of the actual SCSI > device. Will it? At worst it may shuffle the device number if the atapi drive gets probed first. -- Dan Nelson [EMAIL PROTECTED] _

Re: compiling sendmail to 8.13.6

2006-03-25 Thread Dan Nelson
s due to dependencies of other parts of the sytem on a particular version, or different compile-time settings between FreeBSD and the source distribution. Just running cvsup, verifying that you now have the version numbers listed in the security advisory, and rebuilding what the advisory tells you to, w

Re: Thanks! and... the su command

2006-03-25 Thread Dan Nelson
org/doc/en_US.ISO8859-1/books/handbook/securing-freebsd.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: Oops: Deleted /var/named

2006-03-28 Thread Dan Nelson
in /usr/ports/dns/bind9 but that didn't > create anything. What is the propper way to re-set this up? Remove everything in /var/named/dev and remount devfs on top of it (or run /etc/rc.d/named restart which should do the same). -- Dan Nelson [EMAIL PROTECTED] ___

Re: newsyslog: nonexistent time for 'at' value

2006-03-28 Thread Dan Nelson
skips directly from 1:59 to 3:00 next Sunday, which means there is no 2:00, which is why newsyslog is complaining. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/

Re: Shell ( csh, sh ) scripting and seq-command

2006-03-29 Thread Dan Nelson
gt; a seq equivalent ( 3 par version ) would be: > > @ reps = ( $3 - $1 ) / $2 > jot $reps $1 $3 > > which will give 1..3..5..7..9..12(!)....60 > > so how would your implementation of seq by using jot look like? jot - $1 $3 $2 ( which in you

Re: getop.h conflict when building audio/akode

2006-03-31 Thread Dan Nelson
r 5.1, rebuild them and they will compile without that dependency. -- 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: programmer questions - MMAP

2006-04-05 Thread Dan Nelson
eek(ff,1<<24,0); > write(ff,"",1); > adr=mmap(0,1<<24,PROT_READ|PROT_WRITE,MAP_NOCORE,ff,0); Try MAP_NOCORE|MAP_SHARED here. It's probably defaulting to a private mapping. -- Dan Nelson [EMAIL PROTECTED]

Re: SCO OPENSERVER

2006-04-06 Thread Dan Nelson
e only available for SCO anymore. If you can get your hands on a Linux binary, FreeBSD will run that just fine. -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebs

Re: Does FreeBSD support sparse kernel crash dumps?

2006-04-08 Thread Dan Nelson
would push highwater over 128k. A patch that does this for 5.* on x86 only is at http://www.allantgroup.com/FreeBSD/crashdump_compress.diff . -- Dan Nelson [EMAIL PROTECTED] ___ freebsd-questions@freebsd.org mailing list http://lists.f

Re: upcoming release 6.1: old version of some core components

2006-04-11 Thread Dan Nelson
ified from the released version". I'd expect the same goes for openssh and openssl. Upgrading zlib on a stable branch is probably fine, but I'd expect that newer openssh/openssl's will have ABI or config file changes that would make upgrading them a pain. Much easier to import new ve

Re: Help clarify the '-l' option of ls(1).

2006-04-12 Thread Dan Nelson
0 Apr 12 12:09 b "a" and "b" both have a link count of 2. "." has a link count of 2 because it also exists in /tmp as "z". ".." has a link count of 8 because it also exists as "." in /tmp, plus as &q

Re: Proper Method of Time Sync?

2006-04-14 Thread Dan Nelson
;t adjust the clock if it's more than 1000 seconds off, so it's a good idea to enable ntpdate as well. You don't need the ntpdate_flags variable; the startup script will grab server names out of /etc/ntp.conf . -- Dan Nelson [EMAIL PROTECTED]

Re: spamassassin, clamav with sendmail - not scanning local mails.

2004-06-14 Thread Dan Nelson
endmail to use the mail > filters for local mails. Any info would be appreciated. I think you will have to configure your fetching tools to inject messages to localhost port 25 or 587 instead of execing sendmail. Fetchmail should do this by default (it will fall back to execing s

Re: ucom* at uftdi? does not work with getty

2004-06-14 Thread Dan Nelson
_MASK from the make_dev() call on line 186 of ucom.c. That looks like it will convert ucomX to a callin device. A correct fix would probably be to copy all the code in dev/sio/sio.c related to the "devs" array to ucom.c, and name the devices "ttyuX" and "cuauX"

Re: CPU frequency

2004-06-15 Thread Dan Nelson
lso use machdep.tsc_freq to get the exact clock rate in Hz. -- 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: Is PERC4/Di supported under FreeBSD 5.2.1?

2004-06-17 Thread Dan Nelson
D controllers ( amr(4) driver) But if you click on the amr(4) link, the manpage does list "Dell PERC 4/Di" as one of the cupported controllers, so it is supported on FreeBSD 5.x. -- Dan Nelson [EMAIL PROTECTED] ___ [EMA

Re: FreeBSD 5.2.1 - Joke-only release ? April Fools ??

2004-06-19 Thread Dan Nelson
ntains: md0: I/O read failure My only guess is your mfsroot floppy might be bad. -- 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: read vs. mmap (or io vs. page faults)

2004-06-20 Thread Dan Nelson
k wouldn't have been as high as 11000. For sequential access I would have expected read() to have been able to prefetch almost every block before the userland process needed it. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTE

Re: Regarding FreeBSD proc entries

2004-06-21 Thread Dan Nelson
source for examples. -- Dan Nelson [EMAIL PROTECTED] ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"

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