Re: audio in linux emulation, skype & friends

2014-10-30 Thread Jay Patel
Try https://jitsi.org/ or tox https://tox.im/ Hope this helps. On Wed, Oct 29, 2014 at 11:42 PM, Alexandre Ratchov wrote: > I thought that linux emulation has partial oss audio support which > would allow to run skype on openbsd. While searching for more > information, it appears that audio

Re: Remove print/acroread

2014-10-30 Thread Jason Adams
On 10/29/2014 11:22 AM, Артур Истомин wrote: > On Wed, Oct 29, 2014 at 04:25:02PM +0100, Marc Espie wrote: >> On Wed, Oct 29, 2014 at 04:11:47PM +0100, Alexandre Ratchov wrote: >>> On Wed, Oct 29, 2014 at 08:30:32AM -0600, David Coppa wrote: So here I am, asking on misc@... Do people

Re: 5.6 arrived

2014-10-30 Thread Fish Kungfu
5.6 CD's arrived today in Greenville, South Carolina! On Thu, Oct 30, 2014 at 1:08 PM, Carlin Bingham wrote: > On Thu, 30 Oct 2014, at 10:32 AM, Richard Toohey wrote: > > On 10/30/14 07:26, Zé Loff wrote: > > > Sighted on my mailbox today, in Lisbon, Portugal. > > Arrived today in Tauranga, New

Re: troublesome threesome: home network woes (yes, it is a router issue)

2014-10-30 Thread frantisek holop
frantisek holop, 30 Oct 2014 20:31: > i have network problem i am trying to solve > but i am stuck. any ideas to track this down > are welcome. i fished out some cables et voila, when both notebooks are connected as god meant it, the router is happy: ethernet openbsd -> ethernet linux: 64 bytes

Re: Logging Password change attempts

2014-10-30 Thread Jan Stary
On Oct 30 10:39:29, tro...@gmail.com wrote: > Also check passwd(5), master.passwd holds > expiration and last change information No, that's something else: The change field is the number in seconds, GMT, from the Epoch, until the password for the account must be changed. This field may

Re: lost+found disappeared

2014-10-30 Thread Jan Stary
On Oct 30 11:04:22, min...@obiit.org wrote: > Jan Stary, 30 Oct 2014 10:25: > > Ah, so you completely reinstalled? Then you have a fresh system > > where there are no lost+found directories. These are only created > > when fsck needs to reattach UNREF files. > > these are the last lines of fsck i

troublesome threesome: home network woes

2014-10-30 Thread frantisek holop
i have network problem i am trying to solve but i am stuck. any ideas to track this down are welcome. my home network (wifi, dhcp): router (D-link DI-524): 10.10.10.1 openbsd (current) notebook: 10.10.10.60 linux mint (r17) notebook: 10.10.10.33 the problem: connecting from openbsd to linux is

Re: Logging Password change attempts

2014-10-30 Thread Peter J. Philipp
On 10/30/14 17:19, Peter J. Philipp wrote: I think I found something and Vijay found it but is being modest. Let me show you: > your script didn't work for me with /bin/sh so I modified it, and > changed the logger's to echos so that I don't pollute my logs. I have > found a small race in your

Re: 5.6 arrived

2014-10-30 Thread Carlin Bingham
On Thu, 30 Oct 2014, at 10:32 AM, Richard Toohey wrote: > On 10/30/14 07:26, Zé Loff wrote: > > Sighted on my mailbox today, in Lisbon, Portugal. > Arrived today in Tauranga, New Zealand. > Arrived today in the other half of New Zealand (Chistchurch). -- Carlin

Large number of netlivelocks

2014-10-30 Thread Federico Giannici
Hi. We noticed that in our firewall (an OpenBSD 5.5-stable amd64, demsg follows) there are a large number of network livelocks (kern.netlivelocks). We graphed them and noticed that they arrive even to 2000 per minute! They are related to the amount of traffic but not in a linear way. We'd li

Re: Logging Password change attempts

2014-10-30 Thread Peter J. Philipp
On 10/30/14 13:56, Vijay Sankar wrote: > Quoting Alexander Hall : > >> On October 30, 2014 1:26:25 PM CET, Vijay Sankar >> wrote: >>> I have been using a simple script >>> >>> # mypasswd.sh >>> /usr/bin/passwd -l >>> if [[ $? != 0 ]]; then >>> /usr/bin/logger "Unsuccessful attempt to chan

Re: Logging Password change attempts

2014-10-30 Thread Stuart McMurray
A setuid wrapper around passwd would prevent normal (non-root, non-sudo) users from running passwd directly: -r-sr-xr-x 1 auditor bin 10240 Oct 30 11:47 passwd -r-x-- 1 auditor bin 28376 Oct 30 11:46 passwd.orig The only catch is it can't be a shell script, which adds another (trivial)

Re: Logging Password change attempts

2014-10-30 Thread Alan McKay
Take the original passwd command and rename it to "passwd.orig" and rename your script into its place (without the .sh ending) and have your script call "passwd.orig". Still not perfect since someone who knows the difference can still call the orig directly. The alternative would be to dig into t

Re: Logging Password change attempts

2014-10-30 Thread trondd
Only other thing I could think of is monitoring the right file access or system calls or the like and logging that. But the script is probably the simplest and if anyone circumvents the script by calling passwd directly, it only means their password is newer than expected, which isn't as much of a

Re: Logging Password change attempts

2014-10-30 Thread Vijay Sankar
Quoting trondd : Also check passwd(5), master.passwd holds expiration and last change information (I don't have in enabled anywhere, so I am not sure what it looks like) that maybe you could generate a report from if you are enforcing password expiry that way. Tim. Unfortunately that won't

Re: Remove print/acroread

2014-10-30 Thread Jonathan Thornburg
In message I wrote > [[various things that need fillable pdf forms of a sort that no > native OpenBSD software seems to grok]] > > There's still a place in the computing world for Windoze machines. :( In message

Re: crypto softraid and keydisk on same harddrive

2014-10-30 Thread Erling Westenvik
On Tue, Oct 28, 2014 at 08:44:19PM +0100, Patrik Lundin wrote: > On Wed, Oct 29, 2014 at 01:24:30AM +1100, Joel Sing wrote: > > > > You could try this (only compile tested) diff: > > > > I tried this diff on 5.5-stable and it appeared to solve my problem! The > system now boots from sr0a without

Re: Logging Password change attempts

2014-10-30 Thread trondd
Also check passwd(5), master.passwd holds expiration and last change information (I don't have in enabled anywhere, so I am not sure what it looks like) that maybe you could generate a report from if you are enforcing password expiry that way. Tim.

Re: Logging Password change attempts

2014-10-30 Thread Vijay Sankar
Quoting trondd : The second problem I have is that when I change password, out of habit, I do a passwd instead of mypasswd. Why not call the script passwd and put it in the path ahead of the real one? What is the goal? Are there users on the system trying to brute force change a password?

Re: Logging Password change attempts

2014-10-30 Thread trondd
> The second problem I have is that when I change password, out of habit, I > do a passwd instead of mypasswd. Why not call the script passwd and put it in the path ahead of the real one? What is the goal? Are there users on the system trying to brute force change a password? Or are you just t

Re: enumerate sndio devices

2014-10-30 Thread Remco
In article <5451b32e.7060...@outband.net> you wrote: > I feel as if i am overlooking somthing obvious, but.. > > Is there a way to list sndio endpoints? > Unless someone has a better idea, I think you need to look at your dmesg. Look for lines "audioN at whatever". The audioN device should corre

Re: enumerate sndio devices

2014-10-30 Thread David Coppa
On Thu, Oct 30, 2014 at 1:23 PM, Alexandre Ratchov wrote: > On Thu, Oct 30, 2014 at 10:22:29AM +0100, Jan Stary wrote: >> On Oct 29 20:40:30, rus...@outband.net wrote: >> > I feel as if i am overlooking somthing obvious, but.. >> > Is there a way to list sndio endpoints? >> >> sndiod recognizes re

Re: Logging Password change attempts

2014-10-30 Thread Vijay Sankar
Quoting Alexander Hall : On October 30, 2014 1:26:25 PM CET, Vijay Sankar wrote: I have been using a simple script # mypasswd.sh /usr/bin/passwd -l if [[ $? != 0 ]]; then /usr/bin/logger "Unsuccessful attempt to change password" else /usr/bin/logger "Changed login password" fi

Re: Logging Password change attempts

2014-10-30 Thread Alexander Hall
On October 30, 2014 1:26:25 PM CET, Vijay Sankar wrote: >I have been using a simple script > ># mypasswd.sh >/usr/bin/passwd -l >if [[ $? != 0 ]]; then > /usr/bin/logger "Unsuccessful attempt to change password" >else > /usr/bin/logger "Changed login password" >fi > >to get syslog

Re: lost+found disappeared

2014-10-30 Thread Otto Moerbeek
On Thu, Oct 30, 2014 at 01:18:13PM +0100, frantisek holop wrote: > Otto Moerbeek, 30 Oct 2014 12:59: > > fsck_ffs only creates lost+found if it needs to link a lost file, but > > it does not do that in preen mode. Preen mode is used by the rc > > script. > > thank you for the explanation. > from

Logging Password change attempts

2014-10-30 Thread Vijay Sankar
I have been using a simple script # mypasswd.sh /usr/bin/passwd -l if [[ $? != 0 ]]; then /usr/bin/logger "Unsuccessful attempt to change password" else /usr/bin/logger "Changed login password" fi to get syslog entries whenever I change my password. I looked for a better way bu

Re: enumerate sndio devices

2014-10-30 Thread Alexandre Ratchov
On Thu, Oct 30, 2014 at 10:22:29AM +0100, Jan Stary wrote: > On Oct 29 20:40:30, rus...@outband.net wrote: > > I feel as if i am overlooking somthing obvious, but.. > > Is there a way to list sndio endpoints? > > sndiod recognizes real HW devices (-f) and exposes subdevices (-s) > for the applicat

Re: enumerate sndio devices

2014-10-30 Thread Alexandre Ratchov
On Wed, Oct 29, 2014 at 08:40:30PM -0700, Rusty wrote: > I feel as if i am overlooking somthing obvious, but.. > > Is there a way to list sndio endpoints? > no, unfortunately one host can't have the list of usable audio devices (remember some are exposed on the network by other hosts). > Specif

Re: lost+found disappeared

2014-10-30 Thread frantisek holop
Otto Moerbeek, 30 Oct 2014 12:59: > fsck_ffs only creates lost+found if it needs to link a lost file, but > it does not do that in preen mode. Preen mode is used by the rc > script. thank you for the explanation. from the man page it seemed that preen mode is identical to normal mode except 1) us

Re: lost+found disappeared

2014-10-30 Thread Otto Moerbeek
On Thu, Oct 30, 2014 at 12:59:14PM +0100, Otto Moerbeek wrote: > On Thu, Oct 30, 2014 at 11:04:22AM +0100, frantisek holop wrote: > > > Jan Stary, 30 Oct 2014 10:25: > > > Ah, so you completely reinstalled? Then you have a fresh system > > > where there are no lost+found directories. These are on

Re: lost+found disappeared

2014-10-30 Thread Otto Moerbeek
On Thu, Oct 30, 2014 at 11:04:22AM +0100, frantisek holop wrote: > Jan Stary, 30 Oct 2014 10:25: > > Ah, so you completely reinstalled? Then you have a fresh system > > where there are no lost+found directories. These are only created > > when fsck needs to reattach UNREF files. > > these are the

Re: LibreOffice woes

2014-10-30 Thread Jonathan Gray
On Thu, Oct 30, 2014 at 01:21:48PM +0200, Gregory Edigarov wrote: > Hello, > > libreoffice-4.3.2.2p0v0, installed from packages, coredumps when on > saving the file. I observe this behaviour whether it is a manual save, > or an autosave. > Aside from this I can open and edit any file. > > The h

Re: LibreOffice woes

2014-10-30 Thread Kirill Bychkov
On Thu, October 30, 2014 14:21, Gregory Edigarov wrote: > Hello, > > libreoffice-4.3.2.2p0v0, installed from packages, coredumps when on > saving the file. I observe this behaviour whether it is a manual save, > or an autosave. > Aside from this I can open and edit any file. > > The hardware and me

LibreOffice woes

2014-10-30 Thread Gregory Edigarov
Hello, libreoffice-4.3.2.2p0v0, installed from packages, coredumps when on saving the file. I observe this behaviour whether it is a manual save, or an autosave. Aside from this I can open and edit any file. The hardware and memory is definitely not an issue, as everything else works correct

Re: DRM. intel_crct_config errors

2014-10-30 Thread Evgeny Zhavoronkov
Xorg.0.log and full dmesg. Xorg.0.log: [14.783] (--) checkDevMem: using aperture driver /dev/xf86 [14.801] (--) Using wscons driver on /dev/ttyC4 in pcvt compatibility mode (version 3.32) [14.823] X.Org X Server 1.14.5 Release Date: 2013-12-12 [14.823] X Protocol Version 11, Revisi

Re: lost+found disappeared

2014-10-30 Thread frantisek holop
Jan Stary, 30 Oct 2014 10:25: > Ah, so you completely reinstalled? Then you have a fresh system > where there are no lost+found directories. These are only created > when fsck needs to reattach UNREF files. these are the last lines of fsck i can see: /dev/sd0a (65714a12cd3919f3.a): UNREF FILE I=2

Re: lost+found disappeared

2014-10-30 Thread Jan Stary
On Oct 30 00:11:49, min...@obiit.org wrote: > what does it mean when /lost+found disappears? It doesn't. You must have removed it. > i am sure i had it a couple of days ago > (because that is when i completely reinstalled > the system). Ah, so you completely reinstalled? Then you have a fresh sy

Re: enumerate sndio devices

2014-10-30 Thread Jan Stary
On Oct 29 20:40:30, rus...@outband.net wrote: > I feel as if i am overlooking somthing obvious, but.. > Is there a way to list sndio endpoints? sndiod recognizes real HW devices (-f) and exposes subdevices (-s) for the applications to use. What's an "endpoint"? > Specifically I was trying to atta

DRM. intel_crct_config errors

2014-10-30 Thread Evgeny Zhavoronkov
Hi, All! I can't set a fullhd resoulution on my second monitor. I don't see 1920x1080 in xrandr's output, so I used cvt to create a new one, but in the end I got intel_crct errors in dmesg. Here are some outputs. -> cvt 1920 1080 # 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 M

Re: lost+found disappeared

2014-10-30 Thread Alexander Hall
On October 30, 2014 9:33:24 AM CET, frantisek holop wrote: >Alexander Hall, 30 Oct 2014 00:48: >> On 10/30/14 00:11, frantisek holop wrote: >> >what does it mean when /lost+found disappears? >> > >> >i am sure i had it a couple of days ago >> >(because that is when i completely reinstalled >> >the

Re: lost+found disappeared

2014-10-30 Thread frantisek holop
Philip Guenther, 29 Oct 2014 21:26: > On Wed, Oct 29, 2014 at 4:11 PM, frantisek holop wrote: > > what does it mean when /lost+found disappears? > > > > i am sure i had it a couple of days ago > > (because that is when i completely reinstalled > > the system). > > How confident are you that it ex

Re: lost+found disappeared

2014-10-30 Thread frantisek holop
Alexander Hall, 30 Oct 2014 00:48: > On 10/30/14 00:11, frantisek holop wrote: > >what does it mean when /lost+found disappears? > > > >i am sure i had it a couple of days ago > >(because that is when i completely reinstalled > >the system). > > A reinstall does not render you any lost+found direc