Re: What do fifth entry of `ls -ld /` implies ?

2010-11-08 Thread Andreas Kahari
On Mon, Nov 08, 2010 at 09:59:25PM +0800, Aaron Lewis wrote: > Hi, > I'm wondering what is the fifth entry of "long format" with ls -ld , > which i've never cared much about. > > ls -ld /usr/bin > drwxr-xr-x 2 root wheel 6656 Nov 3 02:21 /usr/bin > > What does 6656 implies

Re: 2-3 General Question

2010-09-22 Thread Andreas Kahari
On Tue, Sep 21, 2010 at 09:51:48PM -0700, patrick keshishian wrote: > On Tue, Sep 21, 2010 at 7:03 PM, LOL wrote: [cut] > > Does openBSD has a boot manager like Grub or Boot0 for FreeBSD ? > > I don't think so. > > HTH, > --patrick > Grub 0.97 is in ports. See the sysutils/grub port (only for

Re: OpenBSD as a laptop OS

2010-06-18 Thread Andreas Kahari
See FAQ http://www.openbsd.org/faq/faq1.html#Desktop I've been using OpenBSD (mostly on laptops) as my primary work station for eight years. I'm a software developer, and I don't do sound or video as part of my work. Also, I don't have any use for NTFS. Andreas On Fri, Jun 18, 2010 at 01:59:22

OpenMP with gcc4?

2010-05-27 Thread Andreas Kahari
Hi list, With the move to gcc4, will we at some point also get OpenMP support? This seems to be broken at the moment: $ cat omp-test.c int main(void) { int i; int a[100]; #pragma omp parallel for for (i = 0; i < 100; ++i) { a[i] = i*i; } return 0; } $ cc -fopenmp -o omp-test omp-t

Re: ntp log rotation

2010-01-03 Thread Andreas Kahari
e log causes subsequent log messages to be > lost and killing ntpd with SIGHUP causes it to exit. > > I've had a look at the manpages and on the interwebs, but didn't find anything. > > Thanks, > > Lars > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: material about magicpoint

2009-07-13 Thread Andreas Kahari
seems to be very simple and easy to use, > but I would like to see what is possible to do with it. > Any recommendation ? > > Thanks, > Paulo. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: New lynx in base

2009-06-24 Thread Andreas Kahari
upports ssl wildcart certs)? :)) > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: chown

2009-06-04 Thread Andreas Kahari
aW5rBHRtX2xuawNVMTEwMzk3NwR0bV9uZXQDWWFob28hBHRtX3BvcwN0YWdsaW5lB > HRtX3BwdHkDYXVueg--/SIG=14600t3ni/**http%3A//au.rd.yahoo.com/mail/tagline/cre > ativeholidays/*http%3A//au.docs.yahoo.com/homepageset/%3Fp1=other%26p2=au%26p > 3=mailtagline > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: kernel freeze randomly

2009-03-02 Thread Andreas Kahari
2009/2/25 Andreas Kahari : > 2009/2/25 Robert : >> On Wed, 25 Feb 2009 13:36:16 + >> Andreas Kahari wrote: >> >>> Will disabling apmd solve this issue? I'm seeing freezes on my Lenovo >>> X61s. The machine was stable for a few weeks (or so) until T

Re: kernel freeze randomly

2009-02-25 Thread Andreas Kahari
2009/2/25 Robert : > On Wed, 25 Feb 2009 13:36:16 + > Andreas Kahari wrote: > >> Will disabling apmd solve this issue? I'm seeing freezes on my Lenovo >> X61s. The machine was stable for a few weeks (or so) until Theo backed >> out that backed-out com

Re: kernel freeze randomly

2009-02-25 Thread Andreas Kahari
orks fine on the same machines. I'm not >> > even able to invoke ddb from the console. I've been able to trigger it >> > with a lot of disk activity (dd, scp or rsync of large files, etc). >> > Sometimes they lock up immediately, sometimes it takes a fews minutes, >> > but that always seems to trigger it for me. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Firefox and Abiword don't see my printer

2009-01-29 Thread Andreas Kahari
2009/1/29 Eugene Ryazanov : > As I can see on my openSUSE installation, AbiWord requires > libgnomeprint and libgnomeprint requires libgnomecups. > > You can try x11/gnome/libgnomecups/ and x11/gnome/libgnomeprint ports. > > x11/gnome/libgnomecups is marked broken... -- Andrea

Re: Firefox and Abiword don't see my printer

2009-01-28 Thread Andreas Kahari
iWord don't? How do I get them to work? > > Try installing the gtk-*-cups package to see if it makes a difference. Although I didn't have a problem with this (quite happy to print-to-file), installing x11/gtk+2,-cups made a difference in that I now see the CUPS printers in the Firefox print dialog. I'm happy I tried your suggestion. Regards, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: awk

2009-01-15 Thread Andreas Kahari
d the remaining records. For the remaining records, 'i' being still 1 from the prematurely exited loop, the first column is subtracted from 'n'. Regards, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: looks like bug in awk

2009-01-15 Thread Andreas Kahari
um+=$1} END {print sum}' input > > output: > 47858 > > Why in both cases the code sums the field? Are you expecting '0' since the input file contains a space in front of the number? In that case, run awk with "-F '[ ]'", e.g. awk -F '[ ]' '{sum+=$1} END {print sum}' input Cheers, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: mutt 1.5.18 and set trash directive in .muttrc

2009-01-08 Thread Andreas Kahari
wn variable > source: errors in /home/mlists/.mutt/muttrc > > This is strange, because set trash should be working without any patches or > the like as far as i know. > > Can anyone help me to troubleshoot this? > > Thanks a lot, > David > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: How to start Syslogd with -u and -n options

2008-12-11 Thread Andreas Kahari
/var/log/sudo > !chat > *.* /var/log/chat > > # This line added to accept log files from Router > *.* /var/log/router > # > -- > View this message in context: > http://www.nabble.com/How-to-start-Syslogd-with--u-and--n-options-tp20956554p20956554.html > Sent from the openbsd user - misc mailing list archive at Nabble.com. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Question about "sudo -v"

2008-12-08 Thread Andreas Kahari
2008/12/8 Todd C. Miller <[EMAIL PROTECTED]>: > In message <[EMAIL PROTECTED]> > so spake "Andreas Kahari" (andreas.kahari): > >> Ah, I think I found it. It is this line in my sudoers file that does it: >> >> %users ALL=(ALL) NOPASSWD: /us

Re: Question about "sudo -v"

2008-12-08 Thread Andreas Kahari
2008/12/8 Todd C. Miller <[EMAIL PROTECTED]>: > In message <[EMAIL PROTECTED]> > so spake "Andreas Kahari" (andreas.kahari): > >> Here you go: >> >> $ sudo -l >> Matching Defaults entries for ak on this host: >> env_keep

Re: Question about "sudo -v"

2008-12-08 Thread Andreas Kahari
2008/12/8 Alexander Hall <[EMAIL PROTECTED]>: > Andreas Kahari wrote: >> >> Hi list, >> >> According to the manual for sudo, the -v command line switch does the >> following: >> >> "If given the -v (validate) option, sudo will update the u

Re: Question about "sudo -v"

2008-12-08 Thread Andreas Kahari
ILES OWNER PKG_DBDIR PKG_DESTDIR PKG_CACHE PKG_PATH", env_keep+="PKG_TMPDIR PORTSDIR RELEASEDIR SUBPACKAGE WRKOBJDIR", env_keep+="SSH_AUTH_SOCK EDITOR VISUAL SHARED_ONLY", passwd_timeout=0, !insults User ak may run the following commands on this host: (ALL

Question about "sudo -v"

2008-12-08 Thread Andreas Kahari
= 0", and I haven't used "timestamp_timeout". Regards, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Virtual Consoles in OpenBSD/macppc

2008-11-13 Thread Andreas Kahari
SD/macppc knows if its possible to enable more than >> one virtual console? I cant seem to find any info about that in the FAQ. > > http://www.openbsd.org/faq/faq7.html > > It's not supported. Use 'screen' from packages instead. > > PK > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: How to reply "read -s" from bash (linux) in ksh (OpenBSD)

2008-11-12 Thread Andreas Kahari
; I not found this in ksh, > > Thanks in advance! > > -- > # /dev/hdc > -> OpenBSDeros.org > hdc [at] openbsderos [dot] org > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: ifconfig -M on OpenBSD current.

2008-11-03 Thread Andreas Kahari
ent? > > Thanks in advance. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: clearing /tmp

2008-10-30 Thread Andreas Kahari
ere be any major > problems from combining the two, either by linking or symlinking one to > the other? > > Regards > -Lars > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Doubled binary in /bin in snapshot?

2008-10-14 Thread Andreas Kahari
ries do the same and cmp(1) says,that they > are same. > > Am I missing something or it's bug? > > snapshot i386 #1076 > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Patching a SSH 'Weakness'

2008-09-11 Thread Andreas Kahari
oud the number of keystrokes. > The drawback is that the padding part could mean that we are no longer > compatible with the SSH protocol. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Why not update Groff?

2008-02-18 Thread Andreas Kahari
No need for any new features? Regards, Andreas On 18/02/2008, Pieter Verberne <[EMAIL PROTECTED]> wrote: > Hi folks, > > Why is Groff not updated? OpenBSD 4.2 has Groff 1.15 from 1999. > Some compatability issues? > > Pieter (offlist) > > -- Andreas Kahari Some

Re: KSH and Bash problem with long commands

2008-02-12 Thread Andreas Kahari
orks but not with the other shells. > > Has anybody maybe an fix or workaround how I can solve this? > Every hint is appreciated!! > > Regards > Stefan > -- > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Reversing audio channels

2008-01-20 Thread Andreas Kahari
etch your slippers and serve you coffee as well... :-) -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: OpenCVS?

2008-01-20 Thread Andreas Kahari
n/cvs/ > > > > I'm slighly confused by something if the "cvs" command in OpenBSD 4.2 is > "OpenCVS", why does "cvs --help" refer to places like cvshome.org for updates > etc? > > > > -Nix Fan. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: timezone changes

2008-01-17 Thread Andreas Kahari
On 17/01/2008, Paul de Weerd <[EMAIL PROTECTED]> wrote: > On Thu, Jan 17, 2008 at 12:14:59PM +, Andreas Kahari wrote: > | The afterboot(8) manual says to use "ln -fs", e.g. > | > | ln -fs /usr/share/zoneinfo/Canada/Atlantic /etc/localtime > | > | That way, th

Re: timezone changes

2008-01-17 Thread Andreas Kahari
a simple rm /etc/localtime && ln -s ? > > -f > -- > the world: a comedy for thinkers; a tragedy for feelers. > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Limiting CPU to a process or process group?

2008-01-15 Thread Andreas Kahari
5% of machine as > a whole, less the overhead. (*)Not used personally. > > And, yes, we're aware of the opines herein and about re VM. > > /S > > -Original Message- > From: Andreas Kahari <[EMAIL PROTECTED]> > To: Alexander Schrijver <[EMAIL PROTECTED]

Re: Limiting CPU to a process or process group?

2008-01-14 Thread Andreas Kahari
On 14/01/2008, Alexander Schrijver <[EMAIL PROTECTED]> wrote: > On Jan 14, 2008 2:34 PM, Andreas Kahari <[EMAIL PROTECTED]> wrote: > > > > On 14/01/2008, Alexander Schrijver <[EMAIL PROTECTED]> wrote: > > > On Jan 14, 2008 1:30 PM, Andreas Kahari <[E

Re: Limiting CPU to a process or process group?

2008-01-14 Thread Andreas Kahari
On 14/01/2008, Alexander Schrijver <[EMAIL PROTECTED]> wrote: > On Jan 14, 2008 1:30 PM, Andreas Kahari <[EMAIL PROTECTED]> wrote: > > On 14/01/2008, Alexander Schrijver <[EMAIL PROTECTED]> wrote: > > > On Jan 14, 2008 11:52 AM, Andreas Kahari &

Re: Limiting CPU to a process or process group?

2008-01-14 Thread Andreas Kahari
On 14/01/2008, Alexander Schrijver <[EMAIL PROTECTED]> wrote: > On Jan 14, 2008 11:52 AM, Andreas Kahari <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Is there a way of limiting the amount of CPU given to a particular > > process or process group? For example

Limiting CPU to a process or process group?

2008-01-14 Thread Andreas Kahari
7;, but it doesn't fulfil the criteria that the machine is left otherwise idle if nothing else runs on it. I don't have a real reason for why I would want to do this, I'm mainly curious as to if it's possible. Regards, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: GENERIC kernel compile fails at pcidevs_data.h

2007-12-11 Thread Andreas Kahari
ncipate yourself from mental slavery, none but ourselves can free > our minds" Bob Marley, Redemption Song > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: cp(1) bug ?

2007-10-20 Thread Andreas Kahari
t;2f" (according to the spec): "The files in the directory source_file shall be copied to the directory dest_file, taking the four steps (1 to 4) listed here with the files as source_files." Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: cp(1) bug ?

2007-10-19 Thread Andreas Kahari
Eventually, the question could be: what > > should be limiting cp there? a max_path value, or... himself? I think > > the former's the best. > > > > Just my 2 cents. :) > > > > -- > > B+ A nation is a society united by a delusion about it's ancestry and by > > common hatred of its neighbours. B;-- Dean William R. Inge > > -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: scp batch mode?

2007-08-16 Thread Andreas Kahari
cified the socket to send things through. Cheers, Andreas On 15/08/07, James Hartley <[EMAIL PROTECTED]> wrote: > The manpage for scp(1) mentions the -B option for running scp in batch > mode, but no further details. How can scp be run without prompting > for a password? > > Tha

Re: Rename multiple files at once

2007-06-27 Thread Andreas Kahari
o mv $f ${f%.jpg}_thumb.jpg done Cheers, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: How to install packages from FreeBSD

2007-06-23 Thread Andreas Kahari
D, or to compile it outside of the ports/package system. Less possible problems that way... Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Single argument for mv & cp

2007-06-16 Thread Andreas Kahari
k} $ ls testtest.bak This is not actually invoking cp with only one argument. See here: $ set -x $ touch test + touch test $ cp test{,.bak} + cp test test.bak With "set -x", the shell will tell us exactly what gets executed. Cheers, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Regular Expression Problem

2007-06-14 Thread Andreas Kahari
ot escaping the . - meaning it can match to anything. try it with this: egrep "[EMAIL PROTECTED],4}$" good source to read more about it is re_format(7) Regards, Julian No need to escape the dot in []... -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Beep!

2007-04-10 Thread Andreas Kahari
her shortcut. http://tools.search.yahoo.com/shortcuts/#loc_weather -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Disk Load

2007-03-22 Thread Andreas Kahari
Thanks. -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: auto-login as a console ordinary user

2007-02-08 Thread Andreas Kahari
WinXP) After booting I would like to login automatically as a normal user (in other words, to find the prompt of the ordinary user magically). How can I achieve this result? Vittorio -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: some basic questions

2007-01-31 Thread Andreas Kahari
x27;sudoers'. The visudo command gives you a copy of /etc/sudoers to edit and then performs sanity checks on it before installing it as /etc/sudoers when your done. Don't touch /etc/sudoers directly. Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: OpenBSD 3.9 (i386) and mount_udf - big problem

2007-01-30 Thread Andreas Kahari
udf_mountfs(): 0, 1 On 30/01/07, Pedro Martelletto <[EMAIL PROTECTED]> wrote: Andreas, On Tue, Jan 30, 2007 at 09:55:28AM +, Andreas Kahari wrote: > The patch will make the machine not lock up, but it still doesn't > mount the DVD disc. This time, I get no messages f

Re: OpenBSD 3.9 (i386) and mount_udf - big problem

2007-01-30 Thread Andreas Kahari
On 29/01/07, Pedro Martelletto <[EMAIL PROTECTED]> wrote: Andreas, On Mon, Jan 29, 2007 at 09:45:14AM +, Andreas Kahari wrote: > I had the same problem ("FSD does not lie within the partition!" when > trying to mount a UDF DVD disc). I applied the patch below from Ped

Re: OpenBSD 3.9 (i386) and mount_udf - big problem

2007-01-29 Thread Andreas Kahari
udfmp->part_len = letoh32(pd->part_len); udfmp->part_start = letoh32(pd->start_loc); + part_found = 1; } brelse(bp); -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: % stdout?

2006-11-09 Thread Andreas Kahari
t; } > > OpenBSD returns : bar=30 > Linux returns : bar=30% > > How can I solve this? Thanks, $ cat foo.c #include main() { char foo[] = "bar=30%%\n"; fprintf(stdout, foo); } $ gcc foo.c -o foo $ ./foo bar=30% -- Jason Dixon DixonGroup Consulting http://www.dixongroup.net -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: % stdout?

2006-11-09 Thread Andreas Kahari
#include main() { char foo[] = "bar=30%\n"; fprintf(stdout, bar); } OpenBSD returns : bar=30 Linux returns : bar=30% How can I solve this? Thanks, -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: tar question

2006-10-31 Thread Andreas Kahari
the size of the achive on the tape as I don't know anything about tape drives) and the rate of the transfer. Read the manual. Cheers, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Lenovo notebooks

2006-10-26 Thread Andreas Kahari
On 26/10/06, martin g <[EMAIL PROTECTED]> wrote: Hello all Has anyone got experience with Lenovo notebooks running OpenBSD. If you are so kind to share your experience. http://marc.theaimsgroup.com/?l=openbsd-misc&s=lenovo -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: pfctl

2006-10-13 Thread Andreas Kahari
problems are the way to go at all. Just talk to the guy. If that fails, talk to the manager. If that fails, have a really good think about your future. Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: iwi firmware

2006-09-02 Thread Andreas Kahari
ure virus! Copy me to your .signature file and help me propagate, thanks! -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Change a FR keyboard into a US one

2006-08-23 Thread Andreas Kahari
On 21/08/06, Peter H. Coffin <[EMAIL PROTECTED]> wrote: [cut] See also the kbd(8) command. In 3.9 at least, there is a kbd-related section in /etc/rc: if [ -f /sbin/kbd -a -f /etc/kbdtype ]; then kbd `cat /etc/kbdtype` I wonder if that shouldn't really say if [ -x /sbin/kbd -a -f /et

Re: cd subdir; cd .. doesn't preserve working directory

2006-08-09 Thread Andreas Kahari
lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib/lib$ ? If you do cd subdir; cd .. I guess you should end up in the same working directory as before. CL< -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: currently opened file descriptors

2006-08-04 Thread Andreas Kahari
: www.ini.ethz.ch RSA public key: https://www.ini.ethz.ch/~stephan/pubkey.asc --- [demime 1.01d removed an attachment of type application/pgp-signature which had a name of signature.asc] -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: cat -v

2006-07-28 Thread Andreas Kahari
in other utilities (giving examples using sed(1) and pr(1)). http://www.unix.org/online.html Regards, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Problem with x11/xfce4/xfce4-netload on i386, not on amd64

2006-07-20 Thread Andreas Kahari
On 20/07/06, Adam <[EMAIL PROTECTED]> wrote: "Andreas Kahari" <[EMAIL PROTECTED]> wrote: > I do have another i386 at home, an ancient 133MHz machine. It doesn't > have an fxp card in it though and I would need to back it up and > install OpenBSD on it.

Re: Problem with x11/xfce4/xfce4-netload on i386, not on amd64

2006-07-20 Thread Andreas Kahari
On 19/07/06, Antoine Jacoutot <[EMAIL PROTECTED]> wrote: On Wed, 19 Jul 2006, Andreas Kahari wrote: > Not terribly important, but I have a problem with the "netload" panel > plugin for Xfce4. It shows the in/out rates for my interfaces (vr & > re) on my amd64 machin

Problem with x11/xfce4/xfce4-netload on i386, not on amd64

2006-07-19 Thread Andreas Kahari
o. Cheers, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: ntp on openbsd rulez

2006-07-15 Thread Andreas Kahari
orks quite well (also on OpenBSD), but it's too big and in many ways made too complicated. OpenNTPd (which, of course, also runs on Linux) effectively reduces the problem of synching the clock, as you did notice. -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Recompiling Perl 5.8.6

2006-07-15 Thread Andreas Kahari
[EMAIL PROTECTED]:~$ locate 'INC' [EMAIL PROTECTED]:~$ locate '@INC' man perl says there's a file called "@INC", but it's not true. Inc in google yields just a heap of irrelevant links. Wikipedia doesn't have a relevant article on "INC" or "@INC" either. CL< -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: ntpdate program not working with openntpd

2006-07-15 Thread Andreas Kahari
nntpd instance. Am I doing something wrong? Would it help if I send dmesg's etc.? Is there some trick to just make ntpd work properly with external queriers? I've tried to figure this one out but am out of ideas now. best regards, Bo Granlund -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: No Java in OpenBSD

2006-07-11 Thread Andreas Kahari
port kaffe or gcj to OpenBSD, I think kaffe already runs on OpenBSD, though there is no official port in OpenBSD itself. There is a port for kaffe in lang/kaffe. -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Multiple dmesg in /var/run/dmesg.boot ?

2006-07-10 Thread Andreas Kahari
ch something else. Thx in advance, ++ Jerome [demime 1.01d removed an attachment of type application/x-pkcs7-signature which had a name of smime.p7s] -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Default ghostscript doesn't work in OpenBSD 3.9?

2006-07-09 Thread Andreas Kahari
amples/alphabet.ps It's a 1551-byte simple example postscript that comes with Ghostscript and fails for me. I am getting the message Error: /invalidfileaccess in --.outputpage-- I actually get this error for every page I attempt to display with ghostscript. And ggv doesn't work either. CL&

Re: Open BSD commands

2006-06-29 Thread Andreas Kahari
achine hw.machine=amd64 $ sysctl hw.model hw.model=AMD Athlon(tm) 64 Processor 3400+ $ sysctl hw.ncpu hw.ncpu=1 $ sysctl hw.vendor hw.vendor=Gigabyte Technology Co., Ltd. $ sysctl hw.product hw.product=K8T800-8237 Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: ntp on soekris

2006-06-08 Thread Andreas Kahari
On 08/06/06, Pailloncy Jean-Gerard <[EMAIL PROTECTED]> wrote: [cut] And last question, is it a real problem ? I think you're the only one who can answer that one. Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: dynamic dns update

2006-06-02 Thread Andreas Kahari
penBSD. I had currently running sendmail, popa3d, mrtg, mySQL on the machine. Thanks and best regards, Riwan -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: ksh doesn't read .profile when logging as root at xterm.

2006-05-24 Thread Andreas Kahari
On 24/05/06, Joco Salvatti <[EMAIL PROTECTED]> wrote: Hi all, I'd like to know if it's possible to configure `ls' to list files using colors. I use ksh as default shell. I have also noticed that when logged in the X server, when I open a xterm and do `su root' my ksh doesn't read my profile. Rea

Re: newbie questions

2006-05-22 Thread Andreas Kahari
ot;, not "routed"... Be well, Andreas -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: int vs. long

2006-05-12 Thread Andreas Kahari
fere i should always use long instead of int on my 64 machines? Thanks a lot for your time and cooperation. Best regards. -- Andreas Kahari Somewhere in the general Cambridge area, UK

Re: Problem with uvisor0, comms/pilot-link, and LifeDrive, on i386

2006-03-17 Thread Andreas Kahari
On 17/03/06, Antoine Jacoutot <[EMAIL PROTECTED]> wrote: > Selon Andreas Kahari <[EMAIL PROTECTED]>: > > I really would like to sync with my OpenBSD machine as I wouldn't want > > to have to install Linux for something as "trivial" as this. Could you &g

Re: Problem with uvisor0, comms/pilot-link, and LifeDrive, on i386

2006-03-17 Thread Andreas Kahari
On 17/03/06, Antoine Jacoutot <[EMAIL PROTECTED]> wrote: > Selon Andreas Kahari <[EMAIL PROTECTED]>: > > First of all, when I connect the USB cable to my LifeDrive, I get the > > following lines in my dmesg (see last in this message for full dmesg): > > > >

Problem with uvisor0, comms/pilot-link, and LifeDrive, on i386

2006-03-17 Thread Andreas Kahari
e Handheld, rev 2.00/1.00, addr 5 uvisor0: init failed, TIMEOUT uvisor0: at uhub2 port 1 (addr 5) disconnected uvisor0 detached uvisor0 at uhub2 port 1 uvisor0: palmOne, Inc. palmOne Handheld, rev 2.00/1.00, addr 5 uvisor0: init failed, TIMEOUT -- Andreas Kahari

Re: ulimits tuning

2006-03-16 Thread Andreas Kahari
27;t itself gracefully cope with limits, then there is not very much to be done... > > Thanks > MikeG > > Andreas -- Andreas Kahari

Re: Can't use some characters in xterm/console

2006-03-14 Thread Andreas Kahari
/.profile. It will not be read in a default setup. Andreas -- Andreas Kahari

Re: Can't use some characters in xterm/console

2006-03-14 Thread Andreas Kahari
as a different user? Do you still > > have the same problems regardless of the shell you use? > > -- Andreas Kahari

Re: ksh93

2006-02-22 Thread Andreas Kahari
7;t a problem on amd64 at that time, and neither on sparc64. I haven't looked at this for a year or so now, and I'm not planning to in the near future since, as was mentioned, pdksh is good enough for most purposes. The thing I sometimes miss (i.e. that would be useful to have from time to time) in pdksh are: 1. Floating point arithmetics 2. Structs 3. The automatic manual-generation stuff Cheers, Andreas -- Andreas Kahari

Re: Is unix domain UDP reliable?

2006-02-04 Thread Andreas Kahari
) doesn't say otherwise for the UNIX domain. -- Andreas Kahari

Re: Safety of a shutdown when no user could log in

2006-01-26 Thread Andreas Kahari
e a few things that might be going on on a Unix system, even when no user is logged in, maybe especially when it was just rebooted. > Good luck Good luck? -- Andreas Kahari

Re: pid of last started process

2005-12-20 Thread Andreas Kahari
started process from this shell (script) in ksh? > > -- Andreas Kahari

Re: script

2005-12-13 Thread Andreas Kahari
s and his respective files from a folder? > I've read the man of rm and rmdir but seems like they can't do that. > > Thanks > > -- > Ricardo Lucas > > -- Andreas Kahari

Re: a truly openbsd day

2005-11-01 Thread Andreas Kahari
, etc exploit. > > Kevin I think it would be more useful with a m0n0wall-type distribution image. So far, I haven't seen one, but I haven't looked very hard either. -- Andreas Kahari

Re: a truly openbsd day

2005-10-31 Thread Andreas Kahari
e average computer usert though, but possibly quite close to being the average OpenBSD user. My firewall at home runs FreeBSD (m0n0wall on soekris) ;-) Fork however much you want, but I think it would not be constructive. -- Andreas Kahari

Re: sh-script executing

2005-10-06 Thread Andreas Kahari
1) will probably keep a descriptor to the old file and keep using it until done. However, does this have any kind of other implications? The behaviour that Ilya pointed out would not occur to me to be expected... -- Andreas Kahari

Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Andreas Kahari
On 03/10/05, Bryan <[EMAIL PROTECTED]> wrote: > On 10/3/05, Andreas Kahari <[EMAIL PROTECTED]> wrote: > > On 03/10/05, Bryan <[EMAIL PROTECTED]> wrote: > > > I recently attempted to dualboot my laptop with Windows XP. I was > > > following the FAQ and

Re: Documentation bug in WWW FAQ???

2005-10-03 Thread Andreas Kahari
ote the docs: > # dd if=/dev/rwd0a of=/mnt/openbsd.pbr bs=512 count=1 I see "rwd0a" in the document, not "rsd0a". Andreas -- Andreas Kahari

Re: Catching WINCH signal during sleep...

2005-09-19 Thread Andreas Kahari
On 19/09/05, Otto Moerbeek <[EMAIL PROTECTED]> wrote: > On Mon, 19 Sep 2005, Andreas Kahari wrote: > > On 19/09/05, Damien Miller <[EMAIL PROTECTED]> wrote: > > > Andreas Kahari wrote: > > > > (the WINCH signal is delivered when the terminal window change

Re: Catching WINCH signal during sleep...

2005-09-19 Thread Andreas Kahari
On 19/09/05, Damien Miller <[EMAIL PROTECTED]> wrote: > Andreas Kahari wrote: > > (the WINCH signal is delivered when the terminal window changes size) > > SIGWINCH is ignored by default, otherwise your sleep(1) would exit if > you changed the size of your xterm. See sig

Catching WINCH signal during sleep...

2005-09-19 Thread Andreas Kahari
the ALRM signal, there is a number of things that could happen, which is not interesting right now). (the WINCH signal is delivered when the terminal window changes size) Any thoughts? Regards, Andreas -- Andreas Kahari

Re: Active Swap space

2005-09-06 Thread Andreas Kahari
ral University of Para - UFPA > web: http://salvatti.expert.com.br > e-mail: [EMAIL PROTECTED] > > -- Andreas Kahari

Re: tcpdump/pflog - rule numbering

2005-09-06 Thread Andreas Kahari
> > Institut f|r Neuroinformatik > Universitdt / ETH Z|rich > Winterthurerstriasse 190 > CH-8057 Z|rich > > Tel: +41 44 635 30 50 > Sek: +41 44 635 30 52 > Fax: +41 44 635 30 53 > > http://www.ini.ethz.ch > > > -- Andreas Kahari

  1   2   >