Re: CVS update seems stuck

2017-03-17 Thread Hrishikesh Muruk
Hardware is x86 32-bit - Atom. Thank you for the suggestions. The issue persists even when I try other mirrors (tried 3-4 different ones). Leaving out -q shows that there is some activity. But after a while (60 mins +) it stops with the message: "packet_write_wait: Connection to 129.128.197.20 po

Re: CVS update seems stuck

2017-03-17 Thread Nick Holland
On 03/17/17 12:09, Hrishikesh Muruk wrote: > Following instructions at https://www.openbsd.org/anoncvs.html > > I downloaded sys.tar.gz and src.tar.gz for OpenBSD 6.0 and followed that > with an attempt to update the source to stable. > > $ cvs -d anon...@anoncvs3.usa.openbsd.org:/cvs -q up -rOPENB

Re: Isakmpd and NAT-T

2017-03-17 Thread Sébastien Morand
Hello Mike, "group none" in phase 2 because of this in the documentation: << Possible values for auth, enc, and group are described below in CRYPTO TRANSFORMS. Perfect Forward Secrecy (PFS) is enabled unless group none is specified. >> And their documentation says: No PFS. As far as I understan

Re: Isakmpd and NAT-T

2017-03-17 Thread Claer
Hello, On Fri, Mar 17 2017 at 22:07, Stuart Henderson wrote: > On 2017-03-16, Sébastien Morand wrote: > > Thank you Mike for your answer. There is nothing more like you said. > > Actually we succeed in phase 1 but not in phase 2. > .. > > It's look like good to me and conform to the provided spec

octeon: ksyms: Symbol table not valid

2017-03-17 Thread Oliver Marugg
Hi Just installed 6.1-beta from snapshot Mar 14 on Edgerouter Lite 3 with original U-Boot. Loaded bootcmd 'usb reset; fatload usb 0 $loadaddr bsd; bootoctlinux rootdev=sd0 coremask=0x3' 1. Installation just went through with the new installion routine as described in INSTALL.octeon. Many thanks

Re: Handle updates and pkg_sign question

2017-03-17 Thread Panagiotis Atmatzidis
Hi again, > On 17 Mar 2017, at 14:22, Panagiotis Atmatzidis wrote: > > Hi, > > I managed to create proper packages using "pkg_create" for two versions > of "mypkg". Now I'm trying to handle upgrades and signatures. > > Although I'm setting the "FULLPKGPATH" options, upgrades are not handled > cle

Re: show total memory used / allocated by a program

2017-03-17 Thread Abel Abraham Camarillo Ojeda
You could also use time(1), the command, not the shell built-in: $ env time -l echo 0.00 real 0.01 user 0.00 sys 552 maximum resident set size 0 average shared memory size 0 average unshared data size 0 average unshared stack size

Re: how to debug OpenBSD virtio-scsi killing qemu-kvm VM?

2017-03-17 Thread Jiri B
On Thu, Mar 16, 2017 at 10:15:21PM +0100, Stefan Fritsch wrote: > On Tuesday, 14 March 2017 20:16:17 CET Jiri B wrote: > > Recent dmesg, and VM exits because of virtio-scsi issue when it is > > installing 'bsd.mp'. > > I think I have fixed all the bugs, at least I could not get any corruption > a

Re: show total memory used / allocated by a program

2017-03-17 Thread Manuel Solis
Hello again!! Yes, indeed systat and vmstat are a good options too. Mihai Popescu, Please try one of these examples and see if they show you the information you are looking for: suggestion1: $ top |head -n5| tail -n1 suggestion2: $ vmstat -s|more suggestion3: $ vmstat -m|more suggestion4:

CVS update seems stuck

2017-03-17 Thread Hrishikesh Muruk
Following instructions at https://www.openbsd.org/anoncvs.html I downloaded sys.tar.gz and src.tar.gz for OpenBSD 6.0 and followed that with an attempt to update the source to stable. $ cvs -d anon...@anoncvs3.usa.openbsd.org:/cvs -q up -rOPENBSD_6_0 -Pd After running for a while cvs is just stu

Re: show total memory used / allocated by a program

2017-03-17 Thread Edgar Pettijohn
. > On Mar 17, 2017, at 9:21 AM, Manuel Solis wrote: > > Hello, > >> El 17/03/2017, a las 05:04, Mihai Popescu escribió: >> >> Hello, >> >> I am using top to show running programs activity on an OpenBSD system. >> >> Is there another better command to show in detail the memory used by > programs

Re: tmux, option allow-rename off allows renaming

2017-03-17 Thread Uwe Werler
That's exactly the reason why I wrote this little wrapper script: https://github.com/uwerler/tmux_ssh Am 17. März 2017 12:12:52 MEZ schrieb "Andreas Kusalananda Kähäri" : >Hi, > >I'm doing some development on a Linux machine over SSH from a tmux >shell >session. > >Whenever I log into the Lin

Re: show total memory used / allocated by a program

2017-03-17 Thread Manuel Solis
Hello, > El 17/03/2017, a las 05:04, Mihai Popescu escribió: > > Hello, > > I am using top to show running programs activity on an OpenBSD system. > > Is there another better command to show in detail the memory used by programs? Top is really a good command, you should see de man page for more

Re: tmux, option allow-rename off allows renaming

2017-03-17 Thread Andreas Kusalananda Kähäri
On Fri, Mar 17, 2017 at 12:12:52PM +0100, Andreas Kusalananda Kähäri wrote: > Hi, > > I'm doing some development on a Linux machine over SSH from a tmux shell > session. > > Whenever I log into the Linux host, it renames the current tmux window > (what's displayed to the right at the bottom) to "

Handle updates and pkg_sign question

2017-03-17 Thread Panagiotis Atmatzidis
Hi, I managed to create proper packages using "pkg_create" for two versions of "mypkg". Now I'm trying to handle upgrades and signatures. Although I'm setting the "FULLPKGPATH" options, upgrades are not handled cleanly: sudo pkg_add -D unsigned -Uvv -i mypkg-3.99.2228-obsd6.tgz Update candi

tmux, option allow-rename off allows renaming

2017-03-17 Thread Andreas Kusalananda Kähäri
Hi, I'm doing some development on a Linux machine over SSH from a tmux shell session. Whenever I log into the Linux host, it renames the current tmux window (what's displayed to the right at the bottom) to "user@host /path" (with those words replaced by the actual user etc.). This window name st

Re: Firefox: Recenty instable

2017-03-17 Thread Mihai Popescu
> Which mirror is your favourite? I was using [1] which I found was almost 2 weeks behind and then switched to [2]. [1] http://ftp2.eu.openbsd.org/ [2] https://ftp.hostserver.de/

show total memory used / allocated by a program

2017-03-17 Thread Mihai Popescu
Hello, I am using top to show running programs activity on an OpenBSD system. Is there another better command to show in detail the memory used by programs? My system has 8GB physical RAM. Looking at this, can someone tell me if OpenBSD uses the "swap memory" model used by other OSes, basically

Re: not insecure, rather unsecured.

2017-03-17 Thread Christoph Viethen
Hello, on 17.03.2017 08:10, Mayuresh Kathe wrote: i just installed 6.0 amd64 and rebooted the machine after creating /etc/hostname.iwn0. the boot script(s) issued a warining related to the permissions on the above file. they mentioned "hostname.iwn0 is insecure, fixing it". that word should no

Re: Trouble with isakmpd authentication

2017-03-17 Thread Stuart Henderson
On 2017-03-11, Simon McFarlane wrote: > Hi all, > > I'm trying to set up an IPSec tunnel with a remote peer (HamWAN) who are > helping > me annouce an IPv4 allocation. We are having some trouble authenticating with > isakmpd. We got it to connect with a PSK, but can't get certificates or public >

Re: Firefox: Recenty instable

2017-03-17 Thread Stuart Henderson
On 2017-03-13, Mihai Popescu wrote: > I still have some suprise to see that my favorite mirror is many days > behind snapshots from the time point of view. Maintenance, perhaps? Which mirror is your favourite?

Re: Isakmpd and NAT-T

2017-03-17 Thread Stuart Henderson
On 2017-03-16, Sébastien Morand wrote: > Thank you Mike for your answer. There is nothing more like you said. > Actually we succeed in phase 1 but not in phase 2. .. > It's look like good to me and conform to the provided specs. Phase 1 is ok > but no phase 2: > 155851.640374 Default ipsec_validat

not insecure, rather unsecured.

2017-03-17 Thread Mayuresh Kathe
i just installed 6.0 amd64 and rebooted the machine after creating /etc/hostname.iwn0. the boot script(s) issued a warining related to the permissions on the above file. they mentioned "hostname.iwn0 is insecure, fixing it". that word should not be insecure, but should be "unsecured". after all,