OK I agree I was very vague, mostly because I have thought it must
be very obvious PEBKAC. Sorry.

Well, here is as much info as I collected.

The goal of the script below is to synchronize in memory filesystem
directories to USB stick. Some lines are just to print output of the mount
state, touch works and listing a test file looks OK.

Why does touch work but rsync does not?

Thanks for help.

jirib

%>---

#!/bin/sh
set -x

rc=0

date

# main stuff
mount | egrep "/[       ]+"
if mount -uw / ; then
    mount | egrep "/[   ]+"
    touch /.testfile
    ls -l /.testfile
    printf "Synchronizing in memory /root to /mfs/root backup ... "
    /usr/local/bin/rsync -vhaz --delete /root/ /mfs/root/
    printf "Synchronizing in memory /var to /mfs/var backup ... "
    /usr/local/bin/rsync -vhaz --delete -f "- *.sock" \
        -f "- **/empty/dev/log" \
        -f "- **/log/" /var/ /mfs/var/
    printf "Synchronizing in memory /var/log latest data to /mfs/var_log backup 
..."
    /usr/local/bin/rsync -vhaz --delete \
        -f"- *.old" -f"- *.gz" -f"- *.[0-9]*" /var/log/ /mfs/var_log/
    mount -ur /
    mount | egrep "/[   ]+"
else
    echo "Error: problem to have writtable '/' filesystem"
fi
let rc=rc+$?

# logs
mount | egrep "/mfs/log[        ]+"
if mount -uw /mfs/log ; then
    mount | egrep "/mfs/log[    ]+"
    touch /mfs/log/.testfile
    ls -l /mfs/log/.testfile
    printf "Synchronizing in memory /var/log to /mfs/log backup ... "
    /usr/local/bin/rsync -I -vhaz /var/log/ /mfs/log/
    mount -ur /mfs/log
    mount | egrep "/mfs/log[    ]+"
else
    echo "Error: problem to have writtable '/mfs/log' filesystem"
fi

let rc=rc+$?

# home
mount | egrep "/mfs/home[       ]+"
if mount -uw /mfs/home ; then
    mount | egrep "/mfs/home[   ]+"
    touch /mfs/home/.testfile
    ls -l /mfs/home/.testfile
    printf "Synchronizing in memory /home to /mfs/home backup ... "
    /usr/local/bin/rsync -I -vhaz --delete /home/ /mfs/home/
    mount -ur /mfs/home
    mount | egrep "/mfs/home[   ]+"
else
    echo "Error: problem to have writtable '/mfs/home' filesystem"
fi

let rc=rc+$?

return $rc

---<%

%>---

+ rc=0
+ date
Mon Mar  5 21:02:22 CET 2012
+ mount
+ egrep /[      ]+
/dev/sd0a on / type ffs (local, noatime, read-only)
+ mount -uw /
+ mount
+ egrep /[      ]+
/dev/sd0a on / type ffs (local, noatime)
+ touch /.testfile
+ ls -l /.testfile
-rw-r--r--  1 root  wheel  0 Mar  5 21:02 /.testfile
+ printf Synchronizing in memory /root to /mfs/root backup ... 
Synchronizing in memory /root to /mfs/root backup ... + /usr/local/bin/rsync 
-vhaz --delete /root/ /mfs/root/
sending incremental file list
./
.emacs.d/
deleting .emacs.d/auto-save-list/

sent 412 bytes  received 22 bytes  868.00 bytes/sec
total size is 56.34K  speedup is 129.82
+ printf Synchronizing in memory /var to /mfs/var backup ... 
Synchronizing in memory /var to /mfs/var backup ... + /usr/local/bin/rsync 
-vhaz --delete -f - *.sock -f - **/empty/dev/log -f - **/log/ /var/ /mfs/var/
sending incremental file list

sent 20.49K bytes  received 199 bytes  41.38K bytes/sec
total size is 8.77M  speedup is 423.68
+ printf Synchronizing in memory /var/log latest data to /mfs/var_log backup ...
Synchronizing in memory /var/log latest data to /mfs/var_log backup ...+ 
/usr/local/bin/rsync -vhaz --delete -f- *.old -f- *.gz -f- *.[0-9]* /var/log/ 
/mfs/var_log/
sending incremental file list

sent 432 bytes  received 15 bytes  894.00 bytes/sec
total size is 2.21M  speedup is 4946.18
+ mount -ur /
+ mount
+ egrep /[      ]+
/dev/sd0a on / type ffs (local, noatime, read-only)
+ let rc=rc+0
+ mount
+ egrep /mfs/log[       ]+
/dev/sd0d on /mfs/log type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)
+ mount -uw /mfs/log
+ mount
+ egrep /mfs/log[       ]+
/dev/sd0d on /mfs/log type ffs (local, noatime, nodev, noexec, nosuid)
+ touch /mfs/log/.testfile
+ ls -l /mfs/log/.testfile
-rw-r--r--  1 root  wheel  0 Mar  5 21:02 /mfs/log/.testfile
+ printf Synchronizing in memory /var/log to /mfs/log backup ... 
Synchronizing in memory /var/log to /mfs/log backup ... + /usr/local/bin/rsync 
-I -vhaz /var/log/ /mfs/log/
sending incremental file list
authlog
authlog.0.gz
daemon
daemon.0.gz
daily.out
daily.out.old
failedlogin
ftpd
lastlog
lpd-errs
maillog
maillog.0.gz
maillog.1.gz
maillog.2.gz
maillog.3.gz
maillog.4.gz
messages
messages.0.gz
messages.1.gz
messages.2.gz
messages.3.gz
messages.4.gz
monthly.out
pflog
pflog.0.gz
pflog.1.gz
pflog.2.gz
secure
secure.0.gz
security.out
security.out.old
sendmail.st
snmpd
weekly.out
wtmp
wtmp.0
xferlog
nginx/access.log
nginx/error.log

sent 351.11K bytes  received 756 bytes  100.53K bytes/sec
total size is 2.48M  speedup is 7.04
+ mount -ur /mfs/log
+ mount
+ egrep /mfs/log[       ]+
/dev/sd0d on /mfs/log type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)
+ let rc=rc+0
+ mount
+ egrep /mfs/home[      ]+
/dev/sd0f on /mfs/home type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)
+ mount -uw /mfs/home
+ mount
+ egrep /mfs/home[      ]+
/dev/sd0f on /mfs/home type ffs (local, noatime, nodev, noexec, nosuid)
+ touch /mfs/home/.testfile
+ ls -l /mfs/home/.testfile
-rw-r--r--  1 root  wheel  0 Mar  5 21:02 /mfs/home/.testfile
+ printf Synchronizing in memory /home to /mfs/home backup ... 
Synchronizing in memory /home to /mfs/home backup ... + /usr/local/bin/rsync -I 
-vhaz --delete /home/ /mfs/home/
sending incremental file list
deleting home/jirib/mail/===openbsd-misc/
deleting home/jirib/mail/===main/tmp/
deleting home/jirib/mail/===main/new/
deleting home/jirib/mail/===main/cur/1326645685.22776_11.wolfman:2,RS
deleting home/jirib/mail/===main/cur/1326645685.22776_109.wolfman:2,S
rsync: delete_file: 
unlink(home/jirib/mail/===main/cur/1326645685.22776_107.wolfman:2,S) failed: 
Read-only file system (30)
rsync: delete_file: 
unlink(home/jirib/mail/===main/cur/1326645685.22776_105.wolfman:2,S) failed: 
Read-only file system (30)
rsync: delete_file: 
unlink(home/jirib/mail/===main/cur/1326645685.22776_103.wolfman:2,S) failed: 
Read-only file system (30)
rsync: delete_file: 
unlink(home/jirib/mail/===main/cur/1326645685.22776_101.wolfman:2,RS) failed: 
Read-only file system (30)
rsync: delete_file: 
unlink(home/jirib/mail/===main/cur/1326645685.22776_1.wolfman:2,S) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/===main/cur
rsync: delete_file: rmdir(home/jirib/mail/===main/cur) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/===main/msg.PmG_) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/mail/===main/msg.OmG_) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/mail/===main/msg.MmG_) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/mail/===main/msg.LmG_) failed: Read-only 
file system (30)
cannot delete non-empty directory: home/jirib/mail/===main
rsync: delete_file: rmdir(home/jirib/mail/===main) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Trash/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Trash/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Trash/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/Trash
rsync: delete_file: rmdir(home/jirib/mail/.imap/Trash) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Test/dovecot.index.log) 
failed: Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/Test
rsync: delete_file: rmdir(home/jirib/mail/.imap/Test) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Sent/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Sent/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Sent/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/Sent
rsync: delete_file: rmdir(home/jirib/mail/.imap/Sent) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Queue/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Queue/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Queue/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/Queue
rsync: delete_file: rmdir(home/jirib/mail/.imap/Queue) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/INBOX/dovecot.index.log.2) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/INBOX/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/INBOX/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/INBOX/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/INBOX
rsync: delete_file: rmdir(home/jirib/mail/.imap/INBOX) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Drafts/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Drafts/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/Drafts/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/Drafts
rsync: delete_file: rmdir(home/jirib/mail/.imap/Drafts) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/===main/dovecot.index.log.2) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/===main/dovecot.index.log) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/===main/dovecot.index.cache) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/===main/dovecot.index) failed: 
Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/===main
rsync: delete_file: rmdir(home/jirib/mail/.imap/===main) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.imap/.muttrc/dovecot.index.log) 
failed: Read-only file system (30)
cannot delete non-empty directory: home/jirib/mail/.imap/.muttrc
rsync: delete_file: rmdir(home/jirib/mail/.imap/.muttrc) failed: Read-only file 
system (30)
cannot delete non-empty directory: home/jirib/mail/.imap
rsync: delete_file: rmdir(home/jirib/mail/.imap) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/mail/out.mail) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/Trash) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/mail/Test) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/mail/Sent) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/mail/Queue) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/mail/Drafts) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/mail/.subscriptions) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/mail/.muttrc) failed: Read-only file 
system (30)
cannot delete non-empty directory: home/jirib/mail
rsync: delete_file: rmdir(home/jirib/mail) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.ssh/known_hosts.old) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/.ssh/known_hosts) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.ssh/id_rsa-new) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.ssh/id_rsa) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.ssh/config) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.ssh/authorized_keys~) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/.ssh/authorized_keys) failed: Read-only 
file system (30)
cannot delete non-empty directory: home/jirib/.ssh
rsync: delete_file: rmdir(home/jirib/.ssh) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-VMINFO-MIB.mib) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-VC-EVENT-MIB.mib) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-TC-MIB.mib) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-SYSTEM-MIB.mib) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-ROOT-MIB.mib) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-RESOURCES-MIB.mib) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-PRODUCTS-MIB.mib) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-OBSOLETE-MIB.mib) 
failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-ENV-MIB.mib) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.snmp/mibs/VMWARE-AGENTCAP-MIB.mib) 
failed: Read-only file system (30)
cannot delete non-empty directory: home/jirib/.snmp/mibs
rsync: delete_file: rmdir(home/jirib/.snmp/mibs) failed: Read-only file system 
(30)
cannot delete non-empty directory: home/jirib/.snmp
rsync: delete_file: rmdir(home/jirib/.snmp) failed: Read-only file system (30)
rsync: delete_file: rmdir(home/jirib/.mc/cedit) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.mc/panels.ini) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.mc/ini) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.mc/history) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.mc/filepos) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.mc/bindings) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.mc/Tree) failed: Read-only file system 
(30)
cannot delete non-empty directory: home/jirib/.mc
rsync: delete_file: rmdir(home/jirib/.mc) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.lftp/transfer_log) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/.lftp/rl_history) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.lftp/cwd_history) failed: Read-only file 
system (30)
cannot delete non-empty directory: home/jirib/.lftp
rsync: delete_file: rmdir(home/jirib/.lftp) failed: Read-only file system (30)
rsync: delete_file: 
unlink(home/jirib/.emacs.d/auto-save-list/.saves-18543-abnpbfw01.afterboot.net~)
 failed: Read-only file system (30)
cannot delete non-empty directory: home/jirib/.emacs.d/auto-save-list
rsync: delete_file: rmdir(home/jirib/.emacs.d/auto-save-list) failed: Read-only 
file system (30)
cannot delete non-empty directory: home/jirib/.emacs.d
rsync: delete_file: rmdir(home/jirib/.emacs.d) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.elinks/globhist) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.elinks/cookies) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.elinks/bookmarks) failed: Read-only file 
system (30)
cannot delete non-empty directory: home/jirib/.elinks
rsync: delete_file: rmdir(home/jirib/.elinks) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/todo.txt~) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/todo.txt) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/todo-learning.txt) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/sync_openbsd_src.sh~) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/sync_openbsd_src.sh) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/sync_openbsd_ftp.sh~) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/sync_openbsd_ftp.sh) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/new.sh~) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/new.sh) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/mbox) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/fstab) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/diff) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/SN9C103.diff) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/Makefile.template~) failed: Read-only 
file system (30)
rsync: delete_file: unlink(home/jirib/Makefile.template) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/Learning_CFEngine_3.pdf) failed: 
Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.profile~) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.profile) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.mailrc) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.login) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.kshrc~) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.kshrc) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.hgrc) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.hgignore) failed: Read-only file system 
(30)
rsync: delete_file: unlink(home/jirib/.cvsync.conf~) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.cvsync.conf) failed: Read-only file 
system (30)
rsync: delete_file: unlink(home/jirib/.cshrc) failed: Read-only file system (30)
rsync: delete_file: unlink(home/jirib/.Xdefaults) failed: Read-only file system 
(30)
cannot delete non-empty directory: home/jirib
rsync: delete_file: rmdir(home/jirib) failed: Read-only file system (30)
cannot delete non-empty directory: home
rsync: delete_file: unlink(.testfile) failed: Read-only file system (30)
jirib/
rsync: recv_generator: mkdir "/mfs/home/jirib" failed: Read-only file system 
(30)
*** Skipping any contents from this failed directory ***

sent 423.81K bytes  received 818 bytes  169.85K bytes/sec
total size is 72.67M  speedup is 171.14
rsync error: some files/attrs were not transferred (see previous errors) (code 
23) at main.c(1052) [sender=3.0.9]
+ mount -ur /mfs/home
+ mount
+ egrep /mfs/home[      ]+
/dev/sd0f on /mfs/home type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)
+ let rc=rc+0
+ return 0

---<%

%>---

# /dev/rsd0c:
type: SCSI
disk: SCSI disk
label: STORE N GO      
duid: c6360f81f16927e9
flags:
bytes/sector: 512
sectors/track: 63
tracks/cylinder: 255
sectors/cylinder: 16065
cylinders: 973
total sectors: 15638528
boundstart: 64
boundend: 15631245
drivedata: 0 

16 partitions:
#                size           offset  fstype [fsize bsize  cpg]
  a:           417600               64  4.2BSD   2048 16384    1 # /
  b:                1           417664    swap                   # none
  c:         15638528                0  unused                   
  d:           401600           417696  4.2BSD   2048 16384    1 # /mfs/log
  e:          1429792           819296  4.2BSD   2048 16384    1 # /usr
  f:          1012096          2249088  4.2BSD   2048 16384    1 # /mfs/home
  g:          2088448          3261184  4.2BSD   2048 16384    1 # /usr/local
  h:           192768          5349632  4.2BSD   2048 16384    1 
  i:          2088448          5542400  4.2BSD   2048 16384    1 

---<%

%>---

# mount -t ffs | egrep "(/[     ]+|/mfs)"
/dev/sd0a on / type ffs (local, noatime, read-only)
/dev/sd0d on /mfs/log type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)
/dev/sd0f on /mfs/home type ffs (local, noatime, nodev, noexec, nosuid, 
read-only)

---<%

%>---

OpenBSD 5.1 (GENERIC.MP) #188: Sun Feb 12 09:55:11 MST 2012
    dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP
cpu0: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel" 686-class) 1.81 GHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,NXE,LONG,SSE3,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF
real mem  = 2146492416 (2047MB)
avail mem = 2101256192 (2003MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 12/17/10, BIOS32 rev. 0 @ 0xf0010, SMBIOS 
rev. 2.6 @ 0x9f000 (19 entries)
bios0: vendor American Megatrends Inc. version "1.1a" date 12/17/10
bios0: Supermicro X7SPA-HF
acpi0 at bios0: rev 2
acpi0: sleep states S0 S1 S4 S5
acpi0: tables DSDT FACP APIC MCFG OEMB HPET EINJ BERT ERST HEST
acpi0: wakeup devices P0P1(S4) PS2K(S4) PS2M(S4) USB0(S4) USB1(S4) USB2(S4) 
USB5(S4) EUSB(S4) USB3(S4) USB4(S4) USB6(S4) USBE(S4) P0P4(S4) P0P5(S4) 
P0P6(S4) P0P7(S4) P0P8(S4) P0P9(S4) GBE_(S4) SLPB(S4)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: apic clock running at 200MHz
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel" 686-class) 1.81 GHz
cpu1: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,NXE,LONG,SSE3,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF
cpu2 at mainbus0: apid 1 (application processor)
cpu2: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel" 686-class) 1.81 GHz
cpu2: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,NXE,LONG,SSE3,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Atom(TM) CPU D525 @ 1.80GHz ("GenuineIntel" 686-class) 1.81 GHz
cpu3: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,NXE,LONG,SSE3,MWAIT,DS-CPL,TM2,SSSE3,CX16,xTPR,PDCM,MOVBE,LAHF
ioapic0 at mainbus0: apid 4 pa 0xfec00000, version 20, 24 pins
ioapic0: misconfigured as apic 1, remapped to apid 4
acpimcfg0 at acpi0 addr 0xe0000000, bus 0-255
acpihpet0 at acpi0: 14318179 Hz
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 4 (P0P1)
acpiprt2 at acpi0: bus 1 (P0P4)
acpiprt3 at acpi0: bus -1 (P0P5)
acpiprt4 at acpi0: bus -1 (P0P6)
acpiprt5 at acpi0: bus -1 (P0P7)
acpiprt6 at acpi0: bus 2 (P0P8)
acpiprt7 at acpi0: bus 3 (P0P9)
acpicpu0 at acpi0
acpicpu1 at acpi0
acpicpu2 at acpi0
acpicpu3 at acpi0
acpibtn0 at acpi0: SLPB
acpibtn1 at acpi0: PWRB
bios0: ROM list: 0xc0000/0x8000
ipmi at mainbus0 not configured
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
pchb0 at pci0 dev 0 function 0 "Intel Pineview DMI" rev 0x02
uhci0 at pci0 dev 26 function 0 "Intel 82801I USB" rev 0x02: apic 4 int 16
uhci1 at pci0 dev 26 function 1 "Intel 82801I USB" rev 0x02: apic 4 int 21
uhci2 at pci0 dev 26 function 2 "Intel 82801I USB" rev 0x02: apic 4 int 19
ehci0 at pci0 dev 26 function 7 "Intel 82801I USB" rev 0x02: apic 4 int 18
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb0 at pci0 dev 28 function 0 "Intel 82801I PCIE" rev 0x02: apic 4 int 17
pci1 at ppb0 bus 1
ppb1 at pci0 dev 28 function 4 "Intel 82801I PCIE" rev 0x02: apic 4 int 17
pci2 at ppb1 bus 2
em0 at pci2 dev 0 function 0 "Intel PRO/1000 MT (82574L)" rev 0x00: msi, 
address 00:25:90:60:8f:1e
ppb2 at pci0 dev 28 function 5 "Intel 82801I PCIE" rev 0x02: apic 4 int 16
pci3 at ppb2 bus 3
em1 at pci3 dev 0 function 0 "Intel PRO/1000 MT (82574L)" rev 0x00: msi, 
address 00:25:90:60:8f:1f
uhci3 at pci0 dev 29 function 0 "Intel 82801I USB" rev 0x02: apic 4 int 23
uhci4 at pci0 dev 29 function 1 "Intel 82801I USB" rev 0x02: apic 4 int 19
uhci5 at pci0 dev 29 function 2 "Intel 82801I USB" rev 0x02: apic 4 int 18
ehci1 at pci0 dev 29 function 7 "Intel 82801I USB" rev 0x02: apic 4 int 23
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb3 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0x92
pci4 at ppb3 bus 4
vga1 at pci4 dev 4 function 0 "Matrox MGA G200eW" rev 0x0a
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
ichpcib0 at pci0 dev 31 function 0 "Intel 82801IR LPC" rev 0x02: PM disabled
pciide0 at pci0 dev 31 function 2 "Intel 82801I SATA" rev 0x02: DMA, channel 0 
configured to native-PCI, channel 1 configured to native-PCI
pciide0: using apic 4 int 19 for native-PCI interrupt
wd0 at pciide0 channel 0 drive 0: <ST250LT021-1AF14C>
wd0: 16-sector PIO, LBA48, 238475MB, 488397168 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 6
ichiic0 at pci0 dev 31 function 3 "Intel 82801I SMBus" rev 0x02: apic 4 int 18
iic0 at ichiic0
lm1 at iic0 addr 0x2d: W83627DHG
spdmem0 at iic0 addr 0x51: 2GB DDR3 SDRAM PC3-10600 SO-DIMM
pciide1 at pci0 dev 31 function 5 "Intel 82801I SATA" rev 0x02: DMA, channel 0 
wired to native-PCI, channel 1 wired to native-PCI
pciide1: using apic 4 int 19 for native-PCI interrupt
usb2 at uhci0: USB revision 1.0
uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb3 at uhci1: USB revision 1.0
uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb4 at uhci2: USB revision 1.0
uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb5 at uhci3: USB revision 1.0
uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb6 at uhci4: USB revision 1.0
uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1
usb7 at uhci5: USB revision 1.0
uhub7 at usb7 "Intel UHCI root hub" rev 1.00/1.00 addr 1
isa0 at ichpcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo
com2 at isa0 port 0x3e8/8 irq 5: ns16550a, 16 byte fifo
com2: console
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
wbsio0 at isa0 port 0x2e/2: W83627DHG rev 0x25
lm2 at wbsio0 port 0xca0/8: W83627DHG
npx0 at isa0 port 0xf0/16: reported by CPUID; using exception 16
mtrr: Pentium Pro MTRR support
lm1: disabling sensors due to alias with lm2
umass0 at uhub0 port 1 configuration 1 interface 0 "Verbatim STORE N GO" rev 
2.00/1.10 addr 2
umass0: using SCSI over Bulk-Only
scsibus0 at umass0: 2 targets, initiator 0
sd0 at scsibus0 targ 1 lun 0: <Verbatim, STORE N GO, 5.00> SCSI0 0/direct 
removable serial.18a503001907B87860A2
sd0: 7636MB, 512 bytes/sector, 15638528 sectors
uhub4: device problem, disabling port 2
vscsi0 at root
scsibus1 at vscsi0: 256 targets
softraid0 at root
scsibus2 at softraid0: 256 targets
root on sd0a (c6360f81f16927e9.a) swap on sd0b dump on sd0b
umass1 at uhub1 port 1 configuration 1 interface 0 "VIA Technologies Inc. USB 
2.0 IDE Bridge" rev 2.00/0.03 addr 2
umass1: using ATAPI over Bulk-Only
scsibus3 at umass1: 2 targets, initiator 0
sd1 at scsibus3 targ 1 lun 0: <WDC WD12, 00BEVE-00A0H, 11.0> ATAPI 0/direct 
fixed serial.040d6204000000000001
sd1: 114473MB, 512 bytes/sector, 234441648 sectors
/dev/sd1i: file system not clean; please fsck(8)

---<%

Reply via email to