Re: Whereis my Gbytes on hdd

2015-01-19 Thread Philip Guenther
, without the -h option, to figure out whether there's unallocated space after some partition(s), or if it's a math error in the -h display. Philip Guenther

Re: What exactly is sigtramp?

2015-01-14 Thread Philip Guenther
On Wed, Jan 14, 2015 at 3:10 PM, Stefan Berger berger...@wolfman.devio.us wrote: at [1], I read something about 'Sigtramp separation' within the W^X transition. I only know that this sigtramp-page (?) is used to jump back into the kernel when a signal arrives. My question is, what exactly

Re: hw.setperf affects only 1 (of several) cores?

2014-12-23 Thread Philip Guenther
the mainbus_attach() routine after attaching bios (and thus acpi) and the cpus. Philip Guenther

Re: Dell R630 high interrupts on acpi0

2014-12-16 Thread Philip Guenther
leaving that on. We ain't using it *right now*, but, well, the source tree on my laptop is, and more than ever. :-) Philip Guenther

Re: INVALID ROOT NODE

2014-12-08 Thread Philip Guenther
program makes you fsck your disks? That seems like an overreaction to me. As far as we know, you're just invoking it with the wrong arguments... Philip Guenther

Re: segmentation fault during package build

2014-12-04 Thread Philip Guenther
then reproduce the problem in the bzip2 port to get a fresh core file with that binary, then finally run gdb against the _uninstalled_ binary (/usr/src/bin/ln/obj/ln) but with the new core file and see what the backtrace shows. Philip Guenther

Re: sys_socket() protection fault on -current

2014-12-01 Thread Philip Guenther
certainly my fault, trying to set the close-on-exec flag even when the fd allocation failed. Can you reproduce it with this diff applied? Philip Guenther Index: uipc_syscalls.c === RCS file: /cvs/src/sys/kern/uipc_syscalls.c,v

Re: sys_socket() protection fault on -current

2014-12-01 Thread Philip Guenther
On Mon, Dec 1, 2014 at 1:52 PM, Carlin Bingham c...@viennan.net wrote: Yes this seems to work, can not reproduce it with this applied. Thanks for the report; committed! Philip Guenther

Re: libxmmsmad.so: undefined symbol '__guard_local'

2014-11-26 Thread Philip Guenther
...@openbsd.org Philip Guenther

Re: Packet Filter router i368 vs 64bit

2014-11-25 Thread Philip Guenther
site? Sometimes i386 will run faster than 64 bit (see http://www.openbsd.org/amd64.html). I see nothing on that page to suggest that. Philip Guenther

Re: kernel page fault trap

2014-11-24 Thread Philip Guenther
On Monday, November 24, 2014, Nikos Skalkotos skalk...@grnet.gr wrote: On 23/11/14 06:27, Philip Guenther wrote: ... Note the cssize (cylinder summary size) has grown but csaddr hasn't changed. That means it probably had to relocate allocated blocks. This being your root disk, it may

Re: kernel page fault trap

2014-11-22 Thread Philip Guenther
with the filesystem itself; that's just where it hooks in the code to support FFS filesystems at all. Being not directly related makes me wonder if growfs is corrupting your kernel by its relocating of blocks from the first cylinder group... Philip Guenther

Re: Postfix SASL auth problem in OpenBSD 5.6

2014-11-19 Thread Philip Guenther
On Mon, Nov 17, 2014 at 12:22 PM, giacomo luis...@tin.it wrote: On 16.11.14, 20:25, Philip Guenther wrote: On Sat, Nov 15, 2014 at 7:00 AM, giacomo luis...@tin.it wrote: Recently I have upgrade my system from OpenBSD 5.4 to 5.5 and 5.6. In old system I installed the port of Postfix with SASL

Re: Postfix SASL auth problem in OpenBSD 5.6

2014-11-16 Thread Philip Guenther
have problem with authentication. What crypt(3) format was used for the passwords? In OpenBSD 5.6, support for MD5-style passwords where the hashed password starts with $1$ has been removed. Philip Guenther

Re: kernel page fault trap

2014-11-11 Thread Philip Guenther
-E sd0 ... To make it easier to analyze and reproduce this, can you provide the output of fdisk and disklabel both before changing anything and then again afterwards? Hmm, and how about the output of dumpfs /dev/rsd0a | head -23 before and after too? Philip Guenther

Re: No closing quote

2014-11-09 Thread Philip Guenther
redacted) version?) And if *that's* not the case, then how about you run /etc/netstart with sh -x and debug it? Philip Guenther

Re: No closing quote

2014-11-09 Thread Philip Guenther
script. Variables (notably pkg_scripts) must now be on single lines. Philip Guenther ** or your /etc/rc.conf, if you ignored the comments and edited it

Re: security - pass the hash style attacks?

2014-11-02 Thread Philip Guenther
would be vulnerable. You would also have to be insane. or just the normal unix dump the password /etc/passwd table for offline attacks sorts of stuff? For the authentication methods in base, correct. Philip Guenther

Re: security - pass the hash style attacks?

2014-11-02 Thread Philip Guenther
could be detected and mitagated. Philip Guenther

Re: security - pass the hash style attacks?

2014-11-02 Thread Philip Guenther
[apologies for the contentless previous message] On Sun, Nov 2, 2014 at 4:43 PM, Philip Guenther guent...@gmail.com wrote: On Sun, Nov 2, 2014 at 4:41 PM, Nex6|Bill n6gh...@yahoo.com wrote: ... what about kerberos? (windows K5 vs Unix K5?) There's a bunch of *really good* papers on Kerberos's

Re: lost+found disappeared

2014-10-29 Thread Philip Guenther
, but this time a blind 'boot dump' resulted only in a reboot) I would be bidding on cheap computers on ebay and starting with the plainest install possible if my box was failing like yours. Philip Guenther

Re: 64-bit amd64 : actual memory limitations?

2014-10-26 Thread Philip Guenther
at some point the kva remaining for normal use and management would shrink too much and the whole pmap would need to be rethought... Philip Guenther

Re: panic: ffs_blkfree: bad size

2014-10-26 Thread Philip Guenther
to whatever change caused the problem. Philip Guenther

Re: 64-bit amd64 : actual memory limitations?

2014-10-26 Thread Philip Guenther
future we'll add support for amd64 machines with 2^64 bytes of memory, machines which don't even exist? Nope, not in the near future. Philip Guenther

Re: systat: What are dirty pages?

2014-10-20 Thread Philip Guenther
concurrent KVA allocations it can use for busy buffers (approx: being used for reads or writes); those are the kvaslots being reported there. Philip Guenther

Re: looking for coding hints with ptrace(2)

2014-10-17 Thread Philip Guenther
probably want to jump to detaching instead of exiting while attached (which will kill the target process). Philip Guenther

Re: kernel problem?

2014-10-12 Thread Philip Guenther
becomes unresponsive. A cold restart is needed. There have been some improvements and fixes since 5.2; you're long past the time to upgrade. Philip Guenther

Re: quotas grace period none right away

2014-10-06 Thread Philip Guenther
On Wed, 1 Oct 2014, Otto Moerbeek wrote: On Tue, Sep 30, 2014 at 07:31:20PM +0200, Otto Moerbeek wrote: On Tue, Sep 30, 2014 at 11:20:23AM -0500, Boris Goldberg wrote: Hello Otto, Wednesday, September 24, 2014, 2:36:58 PM, you wrote: OM Try to come up with a reproducable

Re: ntpd -s via ssh remote command 'hangs'

2014-10-06 Thread Philip Guenther
solution (if there isn't a virtualbox toolset) is to use the rc.d framework, which will handle the fds: ssh guesthost '/etc/rc.d.ntpd restart' and put the -s in ntpd_flags in rc.conf.local Philip Guenther

Re: Dansguardian not working after updating OBSD Current

2014-09-16 Thread Philip Guenther
and have the exact same effect. As for what changed, well, something changed the number of child processes you're experiencing (load?), or the process fd limit (RLIMIT_NOFILE) for dansguardian changed. Philip Guenther

Re: OpenBSD 5.6 theme song?

2014-09-15 Thread Philip Guenther
for this release (that's the *final* chunk of work for the theme)... Philip Guenther

Re: random.seed and read only root

2014-09-15 Thread Philip Guenther
just wait for an actual release or two to see what's planned for ro root. Doesn't read-only root require additional hacks already to make device ownership work? You're kludging the system already; just add another line to the kludge for this... Philip Guenther

Re: [Bulk] Re: Real time programming in OpenBSD

2014-09-11 Thread Philip Guenther
On Thu, Sep 11, 2014 at 10:57 AM, Matti Karnaattu mkarnaa...@gmail.com wrote: What I meant was to clarify OpenBSD culture, priorities and coding practices and like to know whichever was the lesser of two evils: -simplicity vs. licensing purity -licensing purity vs. completeness -pragmatic

Re: Real time programming in OpenBSD

2014-09-10 Thread Philip Guenther
/blocking to the buffer cache and UVM subsystems to filesystems. Philip Guenther

Re: nsd Using 100% CPU On Recent amd64 Snapshots

2014-09-09 Thread Philip Guenther
a debug log that shows something looping? Lacking that, ktrace a spinning process for a few seconds then stop it, and combine that with fstat output to see what's syscalls (if any...) are involved in the loop. Philip Guenther

Re: emul.linux on amd64

2014-09-08 Thread Philip Guenther
it wouldn't quite be as easy as just using 64 bit packages instead of 32 bit, but are there too many abi differences? I don't know of anyone who has tried or done the work to compare the ABI details. Philip Guenther

Re: maybe OT 10 year anniversay of Chuck Yerkes death

2014-08-27 Thread Philip Guenther
On Wed, Aug 27, 2014 at 4:21 PM, Diana Eichert deich...@wrench.com wrote: I don't think it's off topic but others might. I'm writing this post to remember Chuck Yerkes, a long time contributor to the misc@openbsd list. While riding his motorcycle 10 years ago Chuck was involved in an accident

Re: What to do about wordexp(3)?

2014-08-26 Thread Philip Guenther
, the current version of this software was released almost two months after google reader was shut down, which was in turn over a year ago. I don't think you're going to be missing anything if you just disable that code... Philip Guenther

Re: pkg_mgr error: Fatal error: Ustar ... Eror while reading header

2014-08-20 Thread Philip Guenther
/gif2png-2.5.2p1.tgz][share/doc/gif2png/README]: Error while reading header Huh. Off hand, I don't see anything weird in that file that should make the perl Ustar.pm choke. I'm afraid further analysis will have to await espie's return... Philip Guenther

Re: dlopen after dlclose crash

2014-08-19 Thread Philip Guenther
we back that change out and wait for someone complain... :-( Philip Guenther

Re: pkg_mgr error: Fatal error: Ustar ... Eror while reading header

2014-08-17 Thread Philip Guenther
On Tue, Aug 12, 2014 at 4:22 PM, Daniel Villarreal yclwebmas...@gmail.com wrote: I'm running OpenBSD -stable.When I run pkg_mgr and try to install something, I get an error message Fatal error: Ustar ... Error while reading header Something is wrong with something. Probably the something

Re: pkg_mgr error: Fatal error: Ustar ... Eror while reading header

2014-08-17 Thread Philip Guenther
On Sat, Aug 16, 2014 at 11:11 PM, Philip Guenther guent...@gmail.com wrote: On Tue, Aug 12, 2014 at 4:22 PM, Daniel Villarreal yclwebmas...@gmail.com wrote: I'm running OpenBSD -stable.When I run pkg_mgr and try to install something, I get an error message Fatal error: Ustar ... Error while

Re: Problem with implicit rule in make

2014-08-17 Thread Philip Guenther
shall refer to an archive library. The .s2.a rule shall be used to update a member in the library from a file with a suffix .s2. I.e., that .c.a rule could sorta be called a .c.a(.o) rule, as it's supposed to match *.a(*.o) targets. Philip Guenther

Re: /etc/daily report error/warning message

2014-08-17 Thread Philip Guenther
-- I did not edit /.cshrc or /etc/daily why will report this error/warning message? I'm 95% certain that this was the result of a bug in /usr/libexec/security fixed in late June. Philip Guenther

Re: /etc/daily report error/warning message

2014-08-17 Thread Philip Guenther
On Sun, Aug 17, 2014 at 1:02 AM, johnw johnw.m...@gmail.com wrote: On 08/17/2014 03:46 PM, Philip Guenther wrote: I'm 95% certain that this was the result of a bug in /usr/libexec/security fixed in late June. Hello Philip Guenther, my system /usr/libexec/security is version 1.31. My

Re: error during package installation

2014-08-16 Thread Philip Guenther
that an interposer can't use that subvert your pkg_add by replacing the package files. BTW what's quirks anyway? I often see it It's a package used by the package system itself. c.f pkg_info quirks Philip Guenther

Re: Good thing

2014-08-11 Thread Philip Guenther
a patch if we guarantee to accept it before you write it? No *committer* gets that promise. Of course, you are guaranteed that you can run your patch on your own system. Indeed, that's part of your own testing and understanding the consequences of your design choices. Philip Guenther

Re: FFS1: already clean, but inconsistent

2014-08-09 Thread Philip Guenther
since 5.3 that might be involved, so you should certainly upgrade from that old (ahem, no longer supported) release. Philip Guenther

Re: login.conf default openfiles

2014-08-05 Thread Philip Guenther
On Tue, Aug 5, 2014 at 6:49 AM, Ed Hynan eh_l...@optonline.net wrote: On Mon, 4 Aug 2014, Philip Guenther wrote: On Sat, Aug 2, 2014 at 7:06 AM, Ed Hynan eh_l...@optonline.net wrote: ... That indicates that the requested -cur value was greater than the requested -max value, if any

Re: login.conf default openfiles

2014-08-04 Thread Philip Guenther
before. Some verbosity recently added? The setrlimit() syscall was changed to comply with POSIX and return an error instead of (iirc) silently clamping the soft limit to the hard limit. Philip Guenther

Re: libiconv-1.14p1 - library c not found, bad major

2014-07-22 Thread Philip Guenther
between a month and 3 months old and *not* the 5.5 release. You'll have a hard time finding packages that match that, so you should reinstall with the correct release files. Philip Guenther

Re: Running RESTORE(8) from standard in.

2014-07-20 Thread Philip Guenther
, that will use ssh internally. Otherwise, the problem is probably just that ssh is reading your stdin as well. You can suppress that with its -n option. But do try the above method using rmt first Philip Guenther

Re: Are nc -lu /dev/zero /dev/null a good throughput test?

2014-07-19 Thread Philip Guenther
On Sat, Jul 19, 2014 at 11:51 AM, Raimundo Santos rait...@gmail.com wrote: I am testing OpenBSD 5.5 Release over XenServer 6.2 with HVM and qemu-dm wrapper to change the default r8139 to virtio, adapted from [1]. So, to test the server private network throughput and other things related, I

Re: Failing to receive message with MSG_OOB

2014-07-16 Thread Philip Guenther
On Wed, 16 Jul 2014, Vincent Gross wrote: I am trying to observe the effect of MSG_OOB while receiving data. I have a small demo program that creates an accepting socket, connect a sending socket to the accepting, closes the accepting socket to keep only the sending and the receiving,

Re: question about swap and chromium from last snapshot

2014-07-04 Thread Philip Guenther
that's a candidate. Have you updated chromium too, or can we rule that out because the problem started independently of a package update? Finally (and perhaps most importantly), what's the output of df -ki /tmp ? There's some reports of Philip Guenther

Re: question about swap and chromium from last snapshot

2014-07-04 Thread Philip Guenther
On Fri, Jul 4, 2014 at 1:24 PM, Philip Guenther guent...@gmail.com wrote: Finally (and perhaps most importantly), what's the output of df -ki /tmp ? There's some reports of ...tmpfs mounts not releasing memory from unlinked files, or at least them taking more space then they should. (Hmm

Re: question about swap and chromium from last snapshot

2014-07-04 Thread Philip Guenther
/partitions? so I believe your thought about inode starvation is correct. Inode starvation? If you think that's what I was saying, then you're jumping to conclusions completely different from where I was going. Philip Guenther

Re: Why doesn't GCM HTTPS work with nginx?

2014-07-02 Thread Philip Guenther
it from my language..): A connection to the www.foo.com is interrupted Error message fail. Interrupted by *what*? There isn't a more information button or similar with more information about the (handshake?) failure? Philip Guenther

Re: What is the difference between these two SSHD configs?

2014-07-02 Thread Philip Guenther
items will *NEVER* match. Philip Guenther

Re: [Patch] Possible typo in stdio(3) manpage

2014-07-02 Thread Philip Guenther
On Wed, Jul 2, 2014 at 3:15 PM, Jason McIntyre j...@kerhand.co.uk wrote: i think the phrase going off and computing means use fflush before your code goes elsewhere, to do other things. whatever it means, the wording is kind of tragic, i agree. your diff seeks to tweak bad wording, whereas i

procfs to die [was: CVS: cvs.openbsd.org: src]

2014-06-22 Thread Philip Guenther
it... Philip Guenther -- Forwarded message -- From: Philip Guenther guent...@cvs.openbsd.org Date: Sun, Jun 22, 2014 at 2:15 PM Subject: CVS: cvs.openbsd.org: src To: source-chan...@cvs.openbsd.org CVSROOT:/cvs Module name:src Changes by: guent...@cvs.openbsd.org2014

Re: sendmail cannot deliver to cyrus-imapd(solved?)

2014-06-15 Thread Philip Guenther
€¦ this code work correct!!! ... Is my work right ? While it didn't crash, I doubt it wrote the correct time and flag values to the file. Philip Guenther

Re: xenocara crash with NVIDIA Quadro NVS 285 on snapshot

2014-05-29 Thread Philip Guenther
here. That's almost certainly a sign that nv_driver.c isn't pulling in the header where xf86CVTMode() is declared, resulting it being treated as returning an int. Perhaps compile with -Wmissing-prototypes to confirm and see whether there are other cases... Philip Guenther

Re: debugging vio issue?

2014-05-28 Thread Philip Guenther
On Wed, May 28, 2014 at 11:26 AM, Adam Thompson athom...@athompso.netwrote: Don't have a good answer for you, but I have similar problems with vio(4). Switching to e1000 on the KVM side solved my random hangs completely. The vio(4) manpage mentions Setting flags to 0x02 disables the

Re: PF log entry

2014-05-28 Thread Philip Guenther
for the higher-level protocol. Philip Guenther

Re: cross compilation tool

2014-05-26 Thread Philip Guenther
partition disk trick or the grub use. The i386 and amd64 boot blocks can load both types of kernel. I used to do that until I accidentally toasted the second disk's install and switched to building i386 on my old T60. Philip Guenther

Re: Wrong Shutdown

2014-05-26 Thread Philip Guenther
On Mon, May 26, 2014 at 6:56 AM, Salim Shaw salims...@vfemail.net wrote: Enable SoftUpdates. /dev/sd0a / ffs rw,softdep 1 1 Since OpenBSD doesn't have background fsck for softupdates, nor does it have softupdates journaling, how will that solve the original problem? Philip Guenther

Re: Getting unswapped?

2014-05-26 Thread Philip Guenther
On Mon, May 26, 2014 at 9:36 PM, Alan Corey alan01...@gmail.com wrote: Several hours ago I edited a few big images in The Gimp so there was some swapping. I still have about 60 megs swapped out even though I've got 600 megs of RAM free. I've seen this before, sometimes it'll stay swapped out

Re: Getting unswapped?

2014-05-26 Thread Philip Guenther
On Mon, May 26, 2014 at 9:49 PM, Philip Guenther guent...@gmail.com wrote: On Mon, May 26, 2014 at 9:36 PM, Alan Corey alan01...@gmail.com wrote: Several hours ago I edited a few big images in The Gimp so there was some swapping. I still have about 60 megs swapped out even though I've got

Re: Cannot get sound to work on a T60

2014-05-24 Thread Philip Guenther
don't have a .wav file on hand, but my T60 running i386 works Just Fine using mplayer. OpenBSD 5.5-stable (1KHZ.MP) #18: Sun May 4 15:39:00 CEST 2014 r...@t60.schulte.it:/usr/src/sys/arch/amd64/compile/1KHZ.MP Tried the GENERIC.MP kernel? Philip Guenther

Re: Cannot get sound to work on a T60

2014-05-24 Thread Philip Guenther
On Sat, May 24, 2014 at 9:03 PM, Christian Schulte c...@schulte.it wrote: Am 05/25/14 04:21, schrieb Philip Guenther: On Sat, May 24, 2014 at 5:59 PM, Christian Schulte c...@schulte.it wrote: please see the output of 'dmesg', 'audioctl -f /dev/audio' and 'mixerctl' included

Re: smtpd stops immediately after starting in -current

2014-05-19 Thread Philip Guenther
it down! Philip Guenther

Re: something fishy with portmapper on i386 snapshot?

2014-05-15 Thread Philip Guenther
, id 0, len 108) Hmm, could you verify that the VAX boot block you're using was compiled with a gcc that was built with miod@'s April 12th fix to gnu/usr.bin/gcc/gcc/protector.c ? Philip Guenther

Re: wildcards for principals when generating ssh certificate

2014-05-15 Thread Philip Guenther
On Wed, May 14, 2014 at 1:40 AM, Jiri B ji...@devio.us wrote: is it possible to have a wildcard in principals when generating user certificate? From reading ssh/key.c:key_cert_check_authority(), I would say that name matching of principals is exact only, without wildcards. Philip Guenther

Re: cron reload

2014-05-15 Thread Philip Guenther
a corner case? 3) is there a problem with it? Philip Guenther

Re: cron reload

2014-05-14 Thread Philip Guenther
claiming would work or why. 3) since you're apparently claiming that the unix-domain socket bits are unnecessary, what testing of this have you done? Philip Guenther

Re: linux port of systrace

2014-05-13 Thread Philip Guenther
and for sshd privsep sandboxing... but as soon as I or someone else comes up with a simpler replacement for it for those functions, it'll be removed.) Philip Guenther

Re: cron reload

2014-05-13 Thread Philip Guenther
instead? Philip Guenther

Re: OpenBSD/amd64 5.5 ext2fs atime+mtime Not Initialized

2014-05-12 Thread Philip Guenther
code to find where they receive their values. Already fixed in -current. Take a look at sys/ufs/ufs/inode.h Philip Guenther

Re: Two typos on the website

2014-05-10 Thread Philip Guenther
(creating a bootable install flash drive) I found another typo. The raw device in the dd command shoud read /dev/rsd6c instead of rsd4c, as in the text the example is sd6. Patch applied. Thanks! Philip Guenther

Re: panic: softdep_deallocate_dependencies

2014-05-08 Thread Philip Guenther
then... Philip Guenther

Re: panic: softdep_deallocate_dependencies

2014-05-08 Thread Philip Guenther
On Thu, May 8, 2014 at 8:14 PM, STeve Andre' and...@msu.edu wrote: On 05/08/14 22:43, Philip Guenther wrote: On Thu, May 8, 2014 at 2:59 PM, STeve Andre' and...@msu.edu wrote: Twice now in three or so weeks, I've gotten a panic on my -current_amd64 W500 laptop. I've updated my tree

Re: upgrade 5.4 - 5.5 -- openldap bdb database

2014-05-07 Thread Philip Guenther
. On the gripping hand, the actual data that the application is storing in the databases' keys and values *may* be dependent on the system types!) Philip Guenther

Re: receive error 54 from NetApp NFS server

2014-05-03 Thread Philip Guenther
On Fri, May 2, 2014 at 4:39 AM, Donovan Watteau tso...@gmail.com wrote: On Tue, 29 Apr 2014, Philip Guenther wrote: On Tue, Apr 29, 2014 at 8:17 AM, Donovan Watteau tso...@gmail.com wrote: I have various mountpoints from a NetApp NFS server with I use on OpenBSD/amd64 5.5. $ grep

Re: crash initializing CPUs after 2014-05-02 snapshot

2014-05-03 Thread Philip Guenther
. Sorry about the headache, and please keep up the excellent exercising of snaps! Philip Guenther

OpenBSD 5.5 Released

2014-05-01 Thread Philip Guenther
, Nicholas Marriott, Nick Holland, Nigel Taylor, Okan Demirmen, Otto Moerbeek, Pascal Stumpf, Paul de Weerd, Paul Irofti, Peter Hessler, Peter Valchev, Philip Guenther, Pierre-Emmanuel Andre, Raphael Graf, Remi Pointel, Renato Westphal, Reyk Floeter, Robert Nagy, Robert Peichaer

Re: Question about Kerberos removal

2014-05-01 Thread Philip Guenther
beetles fucking. that's what kerberosV + openssl is like. Discussed with many. Tests by henning@ reyk@ and others. ok deraadt@ henning@ Philip Guenther

Re: Can't replace /sbin/init

2014-04-30 Thread Philip Guenther
there are a number of places where the kernel currently assumes pid 1 is not a threaded process. Philip Guenther

Re: receive error 54 from NetApp NFS server

2014-04-29 Thread Philip Guenther
when you try to use it again. Philip Guenther

Re: alias's - ksh

2014-04-21 Thread Philip Guenther
=$(hostname) stty -ixon -ixoff ixany status ^T .kshrc: l() { ls -la $@; } PS1=: ${HOSTNAME%%.*}; and so on. Philip Guenther

Re: alias's - ksh

2014-04-21 Thread Philip Guenther
be careful and follow the advice to read ksh(1). ...and file bugs against programs passing -l and -i to the shell when they shouldn't be... Philip Guenther

Re: alias's - ksh

2014-04-21 Thread Philip Guenther
On Mon, Apr 21, 2014 at 7:49 AM, Adam Thompson athom...@athompso.net wrote: On 14-04-21 09:36 AM, Philip Guenther wrote: Hmm, I haven't seen anything like that in many many years. $ENV used to be processed by non-interactive scripts, but that was a bug fixed in 2007. I would be interested

Re: OpenBSD - Linux compatibility

2014-04-21 Thread Philip Guenther
be enabled on systems with untrusted users (and is thus off until enabled by root). Philip Guenther

Re: Find last month abbreviation

2014-04-18 Thread Philip Guenther
On Fri, Apr 18, 2014 at 7:50 AM, Remi Locherer remi.loche...@relo.ch wrote: On Fri, Apr 18, 2014 at 04:06:18PM +0200, Ingo Schwarze wrote: lilit-aibolit wrote on Fri, Apr 18, 2014 at 03:24:36PM +0300: $ date --date=last month +%b Mar Time for a little shell golfing? Look, i'll play it

Re: smokeping errors on OpenBSD 5.4

2014-04-08 Thread Philip Guenther
rrdtool when you system is missing libfreetype? pkg_add should have complained about that and refused to install it. Which -D option did you use? Philip Guenther

Re: is -current broken?

2014-04-07 Thread Philip Guenther
On Mon, Apr 7, 2014 at 9:52 AM, soko.tica soko.t...@gmail.com wrote: But it seems it's not broken, pkg_mgr works, it just had to have the database initialized. Regarding libreoffice, I've also pkg_deleted 4.1.3.2p3v0 and pkg_add 4.1.5.3v0 and it started. pkg_add -u, to bring all your packages

Re: kernel panic assistance

2014-04-07 Thread Philip Guenther
of writes in the past and not get fsck'ed? At this point, I think the way to make this machine reliable again is to newfs all the partitions. I would back up the config files and reinstall, or rather, install a newer version. Philip Guenther

Re: high performance systems

2014-04-03 Thread Philip Guenther
to challenge that claim.) would it be possible to OpenBSD to benefit from sdl usage? Possible? Of course: almost everything is possible, but being possible doesn't mean anyone should try to make it happen. Philip Guenther

Re: termios VMIN VTIME

2014-04-03 Thread Philip Guenther
The original poster has already be pointed to the POSIX spec and had it explained that OpenBSD won't be changing this behavior as long as it's in POSIX. At this point, there's nothing OpenBSD-related left: *productive* discussion of changing the behavior should be on the austin-group (i.e, POSIX)

Re: pflog disappeared

2014-04-03 Thread Philip Guenther
- pflog.txt . After copy pflog from another machine everything back to normal work. Any ideas what happened? Sounds like a bug in /etc/pflogrotate. That's not part of base or ports, AFAICT, so you should contact whoever wrote it and have them add error handling for this case. Philip Guenther

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