Re: starting cwm and terminal font

2017-07-30 Thread Muhammad Kaisar Arkhan
>Is there a way to change the console font to something a little larger? >fontname seems to change for menus only. Depends on which terminal emulator you're running. If you're using xterm/urxvt, you change them in .Xresources \ and load them with xrdb -m ~/. Xresources Thanks, Muhammad Kaisar

after update imput/output error when I run terminal

2017-07-30 Thread Krzysztof Strzeszewski
Hi I update openbsd 6.1-current end is error. When I update, when I run terminal imput/output error on xfce. Krzysztof Strzeszewski

Re: starting cwm and terminal font

2017-07-30 Thread Mihai Popescu
>Is there a way to change the console font to something a little larger? >fontname seems to change for menus only. If you mean xterm by console, then you need to use something like this in your .cwmrc command xterm "xterm -fg white -bg black -fa monospace -fs 13 +sb"

Re: starting cwm and terminal font

2017-07-30 Thread Alexander Hall
On July 31, 2017 1:06:06 AM GMT+02:00, jungle boogie wrote: >Hello, > > >I have some cwm questions for you folks. > >cwm is launching, but it's not setting my background to gray. >I thought I made the change correctly. > >$ cat .xsession > > > >/usr/X11R6/bin/cwm

Re: Getting Dell RAID status via SNMP

2017-07-30 Thread FUKAUMI Naoki
Hi, From: Andrew Daugherity Subject: Re: Getting Dell RAID status via SNMP Date: Fri, 28 Jul 2017 15:08:47 -0500 >> Here is new/WIP patch to support bio(4) for mfii(4). it doesn't fix the >> "issue" yet, but it includes hot swap support from my patch for mfi(4) >>

Re: Calculate the frequency of the tsc timecounter

2017-07-30 Thread Adam Steen
Ted Unangst wrote: > we don't currently export this info, but we could add some sysctls. there's > some cpufeatures stuff there, but generally stuff isn't exported until > somebody finds a use for it... it shouldn't be too hard to add something to > amd64/machdep.c sysctl if you're interested. I

Re: Calculate the frequency of the tsc timecounter

2017-07-30 Thread Ted Unangst
Adam Steen wrote: > Sorry, i sent that before i had finished. > > I am trying to find an equivalent of the following code for FreeBSD we don't currently export this info, but we could add some sysctls. there's some cpufeatures stuff there, but generally stuff isn't exported until somebody finds

smtpd vs. uw-imap locking

2017-07-30 Thread gwes
smtpd locks user mailboxes in /var/mail using lockspool(1) uw-imapd locks using its own dotfile locker mlock(not the syscall) Before I go into uw-imapd and do some nasty additions and if()s: does anyone else care? does anyone else use uw-imap? has anyone attacked this problem? is there anywhere

Re: Calculate the frequency of the tsc timecounter

2017-07-30 Thread Adam Steen
Sorry, i sent that before i had finished. I am trying to find an equivalent of the following code for FreeBSD size_t outsz = sizeof bi->cpu.tsc_freq; int ret = sysctlbyname("machdep.tsc_freq", >cpu.tsc_freq, , NULL, 0); if (ret == -1) err(1,

Re: Calculate the frequency of the tsc timecounter

2017-07-30 Thread Adam Steen
Hi Mike In short i don't want to calculate the TSC frequency, i would like to get it from the kernel if possible? (also checking if it was invariant.) I knew my code was inaccurate, but didn't know another way. I did check the output of dmesg: "cpu0: TSC frequency 2492310500 Hz', but couldn't

starting cwm and terminal font

2017-07-30 Thread jungle boogie
Hello, I have some cwm questions for you folks. cwm is launching, but it's not setting my background to gray. I thought I made the change correctly. $ cat .xsession /usr/X11R6/bin/cwm xsetroot -solid grey & oclock -geometry 75x75-0-0 & The clock is also not showing up. I've also put it

Re: Calculate the frequency of the tsc timecounter

2017-07-30 Thread Mike Belopuhov
On Wed, Jul 26, 2017 at 19:24 +0800, Adam Steen wrote: > Hi > > Is there an easy/accurate way to calculate the tsc timecounter frequency? > like Time Stamp Counters on Linux. (on a > Sandy Bridge cpu) > > Another reference Converting Sandy Bridge TSC to wall clock