Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-14 Thread Michal Nowak via openindiana-discuss

On 12/12/19 09:57 AM, Carl Brewer wrote:


With a couple of minor changes to the Makefile, namely the SDK filename, 
the version and the checksums, and then hand-doing the patch 
13-check-for-libs.patch because it was failing to apply, I managed to 
almost get it to compile, blindly stumbling around details below :



Compiling complains when gmake publish is run :

   cp 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/out/solaris.x86/release/bin/additions//$fl 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/prototype/i386/usr/lib/; 
\

     done
cp: cannot stat 
'/usr/local/src/OI/clone/components/sysutils/virtualbox/build/amd64/out/solaris.amd64/release/bin/additions//VBoxOGL.so': 
No such file or directory
cp: cannot stat 
'/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/out/solaris.x86/release/bin/additions//VBoxOGL.so': 
No such file or directory
cp: cannot stat 
'/usr/local/src/OI/clone/components/sysutils/virtualbox/build/amd64/out/solaris.amd64/release/bin/additions//VBoxEGL.so': 
No such file or directory
cp: cannot stat 
'/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/out/solaris.x86/release/bin/additions//VBoxEGL.so': 
No such file or directory


It's got to do with the two :

VBOX_OGLLIBS= VBoxOGL.so VBoxEGL.so

in the Makefile at the top of the tree.  VBoxOGL at least, I think needs 
to build, as it did in a previous version :



# find / -name "VBoxOGL.*" -ls
830365    5 -rw-r--r--   1 root root 2590 Dec 11 04:43 
/usr/local/src/OI/clone/components/sysutils/virtualbox/VirtualBox-6.1.0/include/VBox/VBoxOGL.h 

246793    5 -rw-r--r--   1 root root 2590 Oct 11 05:25 
/usr/local/src/OI/clone/components/sysutils/virtualbox/VirtualBox-6.0.14/include/VBox/VBoxOGL.h 

832138    5 -rw-r--r--   1 root root 2590 Dec 11 04:43 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/include/VBox/VBoxOGL.h 

961721    5 -rw-r--r--   1 root root 2590 Sep  3 19:33 
/usr/local/src/OI/clone/components/sysutils/virtualbox/VirtualBox-6.0.12/include/VBox/VBoxOGL.h 

591223    5 -rw-r--r--   1 root root 2626 Oct 18 11:18 
/usr/local/src/Virtualbox/repo/vbox/include/VBox/VBoxOGL.h


find doesn't find any VBoxEGL's anywhere :

# find / -name "VBoxEGL.*" -ls
#

I'm not clued up with how to drive patch, so I haven't included any 
patch files. If you built this, you'll know what I've done :)


So I just pulled both of them out of the Makefile, now I see :


/usr/bin/touch 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/.configured 

(cd /usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86 ; 
/usr/bin/env LD_OPTIONS="-M /usr/lib/ld/map.noexstk -M 
/usr/lib/ld/map.noexdata -M /usr/lib/ld/map.pagealign -Bdirect -z 
ignore" LD_EXEC_OPTIONS="-z aslr=disable" 
"ac_cv_func_realloc_0_nonnull=yes" \
     cd 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/src/VBox/HostDrivers 
&& /bin/bash -c ". 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/env.sh 
&& kmk KBUILD_VERBOSE=3"   \

     )
Config.kmk:193: Warning: You must have USERNAME or USER in your 
environment.
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/src/libs/Makefile.kmk:58: 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/src/libs/openssl-1.1.1d/Makefile.kmk: 
No such file or directory
kmk: *** No rule to make target 
'/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/src/libs/openssl-1.1.1d/Makefile.kmk'. 
  Stop.
gmake: *** [/usr/local/src/OI/clone/make-rules/configure.mk:183: 
/usr/local/src/OI/clone/components/sysutils/virtualbox/build/i86/.built] 
Error 2



So that's way further down the rabbit hole than I can help with.  6.1.0 
is a pretty big release, I figure it's got more stuff in it that's 
changed than a few tweaks of the Makefile can handle.


Anyone?

Carl


I worked on VirtualBox 6.1 since it entered Beta stages. You can see my 
work at https://github.com/OpenIndiana/oi-userland/pull/5372. I concur 
that VBoxOGL.so and VBoxEGL.so are missing now. I removed them from the 
component, so it builds, but I am not sure about potential ramifications.


I think it has something to do with VBoxVGA 3D support removal? 
Quotations from the 6.1 changelog follow 
(https://www.virtualbox.org/wiki/Changelog):


- "Graphics: New style 3D support (with VBoxSVGA and VMSVGA) remains, 
old style 3D support (with VBoxVGA) has been completely removed".

- "Graphics: Remove 3D support for VBoxVGA (old one deprecated with 6.0)"

I don't see a checkbox in VM's Settings -> Display -> Acceleration.

Can't get sound from the VM (Audio: PulseAudio & ICH AC97 & Enable Audio 
Output checked).


Carl, can you build VirtualBox 6.1 from my branch and see any of the 
above works for you?


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://ope

Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-15 Thread Michal Nowak via openindiana-discuss



On 12/15/19 09:07 PM, Carl Brewer wrote:

On 15/12/2019 11:17 pm, Carl Brewer wrote:

Carl, can you build VirtualBox 6.1 from my branch and see any of the 
above works for you?


I'll have a go, thank you


It built ok :

pkg://userland/system/virtualbox@6.1.0,5.11-2019.0.0.0:20191215T130656Z
PUBLISHED


That's great.

Can you check that Audio from VM works and that checkbox in VM's 
Settings -> Display -> Acceleration is there?


Thanks,
Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-18 Thread Michal Nowak via openindiana-discuss

On 12/14/19 08:37 PM, Michal Nowak via openindiana-discuss wrote:


I worked on VirtualBox 6.1 since it entered Beta stages. You can see my 
work at https://github.com/OpenIndiana/oi-userland/pull/5372. I concur 
that VBoxOGL.so and VBoxEGL.so are missing now. I removed them from the 
component, so it builds, but I am not sure about potential ramifications.


I think it has something to do with VBoxVGA 3D support removal? 
Quotations from the 6.1 changelog follow 
(https://www.virtualbox.org/wiki/Changelog):


- "Graphics: New style 3D support (with VBoxSVGA and VMSVGA) remains, 
old style 3D support (with VBoxVGA) has been completely removed".

- "Graphics: Remove 3D support for VBoxVGA (old one deprecated with 6.0)"

I don't see a checkbox in VM's Settings -> Display -> Acceleration.

Can't get sound from the VM (Audio: PulseAudio & ICH AC97 & Enable Audio 
Output checked).


Can someone who uses these features test that? Predrag? I am happy to 
build binary packages if needed.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-19 Thread Michal Nowak via openindiana-discuss

On 12/19/19 09:37 AM, Predrag Zecevic - Unix Systems Administrator wrote:


On 12/19/19 07:56, Michal Nowak via openindiana-discuss wrote:

On 12/14/19 08:37 PM, Michal Nowak via openindiana-discuss wrote:


I worked on VirtualBox 6.1 since it entered Beta stages. You can see 
my work at https://github.com/OpenIndiana/oi-userland/pull/5372. I 
concur that VBoxOGL.so and VBoxEGL.so are missing now. I removed them 
from the component, so it builds, but I am not sure about potential 
ramifications.


I think it has something to do with VBoxVGA 3D support removal? 
Quotations from the 6.1 changelog follow 
(https://www.virtualbox.org/wiki/Changelog):


- "Graphics: New style 3D support (with VBoxSVGA and VMSVGA) remains, 
old style 3D support (with VBoxVGA) has been completely removed".
- "Graphics: Remove 3D support for VBoxVGA (old one deprecated with 
6.0)"


I don't see a checkbox in VM's Settings -> Display -> Acceleration.

Can't get sound from the VM (Audio: PulseAudio & ICH AC97 & Enable 
Audio Output checked).


Can someone who uses these features test that? Predrag? I am happy to 
build binary packages if needed.


Michal


Hi Michal,

I am willing to test it. Give to me URL of VB package
Thanks. Regards


Hi Predrag,

you can find binary packages at ftp://openqa.oi.mnowak.cz/.

Install virtualbox_6.1_20191219.p5p on the host and restart. Then 
install virtualbox-additions_6.1_20191219.p5p to OpenIndiana VirtualBox VM.


You can install either package like this:

  pfexec pkg apply-hot-fix -v /tmp/virtualbox_6.1_20191219.p5p

Thanks,
Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-19 Thread Michal Nowak via openindiana-discuss

On 12/19/19 10:47 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 10:14, Michal Nowak via openindiana-discuss wrote:

Hi Predrag,

you can find binary packages at ftp://openqa.oi.mnowak.cz/.

Install virtualbox_6.1_20191219.p5p on the host and restart. Then 
install virtualbox-additions_6.1_20191219.p5p to OpenIndiana VirtualBox VM. 



You can install either package like this:

   pfexec pkg apply-hot-fix -v /tmp/virtualbox_6.1_20191219.p5p

Thanks,
Michal


Heh, does not work:

:; pfexec pkg apply-hot-fix -v 
/nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p
Resolved URL to: 
file:///nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p

Retrieving installed package list...
Scanning package archive...
  pkg://userland/system/virtualbox not installed, skipping.

pkg: None of the packages in this hot-fix are installed.

Maybe I have to add something to command line?

Thanks and regards



I think that for "apply-hot-fix" to work, VirtualBox (of any version) 
needs to be installed. "apply-hot-fix" then works as update mechanism.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-19 Thread Michal Nowak via openindiana-discuss

On 12/19/19 5:03 PM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 16:57, Michal Nowak via openindiana-discuss wrote:

On 12/19/19 10:47 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 10:14, Michal Nowak via openindiana-discuss wrote:

Hi Predrag,

you can find binary packages at ftp://openqa.oi.mnowak.cz/.

Install virtualbox_6.1_20191219.p5p on the host and restart. Then 
install virtualbox-additions_6.1_20191219.p5p to OpenIndiana VirtualBox VM. 



You can install either package like this:

   pfexec pkg apply-hot-fix -v /tmp/virtualbox_6.1_20191219.p5p

Thanks,
Michal


Heh, does not work:

:; pfexec pkg apply-hot-fix -v 
/nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p
Resolved URL to: 
file:///nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p

Retrieving installed package list...
Scanning package archive...
  pkg://userland/system/virtualbox not installed, skipping.

pkg: None of the packages in this hot-fix are installed.

Maybe I have to add something to command line?

Thanks and regards



I think that for "apply-hot-fix" to work, VirtualBox (of any version) 
needs to be installed. "apply-hot-fix" then works as update mechanism.


Michal


Hi Michal,

Yes, I do have it (and actually using every day --one Windows guest, few 
Linux, etc...):


:; pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0     i--

:; pkg info virtualbox
  Name: system/virtualbox
   Summary: VirtualBox - general-purpose full virtualizer
  Category: System/Virtualization
     State: Installed
     Publisher: openindiana.org
   Version: 6.0.14
    Branch: 2019.0.0.0
    Packaging Date: Thu Oct 31 11:42:39 2019
Last Install Time: Fri Nov  1 14:32:26 2019
  Size: 118.66 MB
  FMRI: 
pkg://openindiana.org/system/virtualbox@6.0.14-2019.0.0.0:20191031T114239Z
    Source URL: 
http://download.virtualbox.org/virtualbox/6.0.14/VirtualBox-6.0.14.tar.bz2

   Project URL: http://www.virtualbox.org/

Regards.


I think it does not see the local package as an update because it's from 
the 'userland' publisher, but the installed system/virtualbox package 
comes form the official 'openindiana.org' publisher.


In a test BE, can you remove 
'consolidation/userland/userland-incorporation' and 'entire' packages 
and then try the 'apply-hot-fix' exercise agains, please?


Thanks,
Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-21 Thread Michal Nowak via openindiana-discuss

On 12/20/19 03:48 PM, Espen Martinsen wrote:


Success!


$pfexec pkg update --be-name OIhipster-20191220
reboot

$ uname -a
SunOS esmpc 5.11 illumos-028b5df8ad i86pc i386 i86pc illumos

$ pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0

$pfexec beadm create -d Testing_VB610 VBtest
$pfexec beadm activate VBtest

reboot

$pfexec pkg uninstall system/virtualbox

### putting the .p5p files in /var/userland ###

$pfexec pkg unset-publisher  "*" openindiana.org
$pfexec pkg set-publisher-p/var/userland/virtualbox_6.1_20191219.p5p
userland
$pfexec pkg uninstall entire@0.5.11-2018.0.0.0
$pfexec pkg uninstall consolidation/userland/userland-incorporation
$pfexec pkg install virtualbox
$pfexec pkg list -H virtualbox
$system/virtualbox (userland)
6.1.0-2019.0.0.0   i--

reboot

Additions from virtualbox.de on win10 guest:  Sound Absolutely very good!
(setting HostAudio: PulseAudio, Controller: Intel HD Audio)


That's great, Espen! Can you also check that Seamless Mode works (if it 
worked before)?


Thanks.
Michal




Great Sound!
-espenM







On 12/20/19 9:49 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 17:26, Michal Nowak via openindiana-discuss wrote:

On 12/19/19 5:03 PM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 16:57, Michal Nowak via openindiana-discuss wrote:

On 12/19/19 10:47 AM, Predrag Zecevic - Unix Systems Administrator
wrote:

On 12/19/19 10:14, Michal Nowak via openindiana-discuss wrote:

Hi Predrag,

you can find binary packages at ftp://openqa.oi.mnowak.cz/.

Install virtualbox_6.1_20191219.p5p on the host and restart. Then
install virtualbox-additions_6.1_20191219.p5p to OpenIndiana VirtualBox VM.


You can install either package like this:

    pfexec pkg apply-hot-fix -v /tmp/virtualbox_6.1_20191219.p5p

Thanks,
Michal


Heh, does not work:

:; pfexec pkg apply-hot-fix -v
/nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p
Resolved URL to:
file:///nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p

Retrieving installed package list...
Scanning package archive...
   pkg://userland/system/virtualbox not installed, skipping.

pkg: None of the packages in this hot-fix are installed.

Maybe I have to add something to command line?

Thanks and regards



I think that for "apply-hot-fix" to work, VirtualBox (of any
version) needs to be installed. "apply-hot-fix" then works as
update mechanism.

Michal


Hi Michal,

Yes, I do have it (and actually using every day --one Windows guest,
few Linux, etc...):

:; pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0
     i--

:; pkg info virtualbox
   Name: system/virtualbox
    Summary: VirtualBox - general-purpose full virtualizer
   Category: System/Virtualization
  State: Installed
  Publisher: openindiana.org
    Version: 6.0.14
     Branch: 2019.0.0.0
     Packaging Date: Thu Oct 31 11:42:39 2019
Last Install Time: Fri Nov  1 14:32:26 2019
   Size: 118.66 MB
   FMRI:
pkg://openindiana.org/system/virtualbox@6.0.14-2019.0.0.0:20191031T114239Z

     Source URL:
http://download.virtualbox.org/virtualbox/6.0.14/VirtualBox-6.0.14.tar.bz2

    Project URL: http://www.virtualbox.org/

Regards.


I think it does not see the local package as an update because it's
from the 'userland' publisher, but the installed system/virtualbox
package comes form the official 'openindiana.org' publisher.

In a test BE, can you remove
'consolidation/userland/userland-incorporation' and 'entire' packages
and then try the 'apply-hot-fix' exercise agains, please?

Thanks,
Michal



Hi Michal,

still no luck:

:; pkg list consolidation/userland/userland-incorporation entire

pkg list: no packages matching the following patterns are installed:
   consolidation/userland/userland-incorporation
   entire

pkg apply-hot-fix has failed with same error.

Regards.


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss







___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] what auto snapshot is been used

2019-12-22 Thread Michal Nowak via openindiana-discuss

On 12/22/19 06:23 PM, Carl Brunning wrote:

HI question
am using the latest hipster server so no gui so what people using to do auto 
snapshot

and instruction on how to setup and use
as i would like this feature for my server

thanks
Carl


Hi,

we provide ZnapZend as 'backup/znapzend' package, there's documentation 
at https://github.com/oetiker/znapzend/blob/master/README.md and it's 
respective man pages.


Michal



___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss



___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2019-12-29 Thread Michal Nowak via openindiana-discuss

Thanks for the report and testing, Epsen, it really helped.

Michal

On 12/23/19 01:51 PM, Espen Martinsen wrote:


Hi,

    VB 6.1.0
    Scaled mode works
    Full screen works
    Seamless on w10 with VboxSVGA  do not work, I've never used it som I
dont' know if it has ever worked.
     - It alwost works, can toggle on/off, windows is coming in theri
own window, but Win-menu cannot be opened.

    Seamless on debian-variant (4.19) and VMSVGA  works fine.

    Both w10 and Kali (the debian variant) was tested with additions
first 6.0.4 and then upgraded to 6.1.0.

    Both w10 and Kali plays "Merry Christmas Mr Bean" from youtube very
well

    I'm sorry I cannot test microphone, it have never even worked in
host-OS (hardware-error).

-espenM



On 12/21/19 4:11 PM, Michal Nowak via openindiana-discuss wrote:

On 12/20/19 03:48 PM, Espen Martinsen wrote:


Success!


$pfexec pkg update --be-name OIhipster-20191220
reboot

$ uname -a
SunOS esmpc 5.11 illumos-028b5df8ad i86pc i386 i86pc illumos

$ pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0

$pfexec beadm create -d Testing_VB610 VBtest
$pfexec beadm activate VBtest

reboot

$pfexec pkg uninstall system/virtualbox

### putting the .p5p files in /var/userland ###

$pfexec pkg unset-publisher  "*" openindiana.org
$pfexec pkg set-publisher-p/var/userland/virtualbox_6.1_20191219.p5p
userland
$pfexec pkg uninstall entire@0.5.11-2018.0.0.0
$pfexec pkg uninstall consolidation/userland/userland-incorporation
$pfexec pkg install virtualbox
$pfexec pkg list -H virtualbox
$system/virtualbox (userland)
6.1.0-2019.0.0.0   i--

reboot

Additions from virtualbox.de on win10 guest:  Sound Absolutely very
good!
(setting HostAudio: PulseAudio, Controller: Intel HD Audio)


That's great, Espen! Can you also check that Seamless Mode works (if
it worked before)?

Thanks.
Michal




Great Sound!
-espenM







On 12/20/19 9:49 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/19/19 17:26, Michal Nowak via openindiana-discuss wrote:

On 12/19/19 5:03 PM, Predrag Zecevic - Unix Systems Administrator
wrote:

On 12/19/19 16:57, Michal Nowak via openindiana-discuss wrote:

On 12/19/19 10:47 AM, Predrag Zecevic - Unix Systems Administrator
wrote:

On 12/19/19 10:14, Michal Nowak via openindiana-discuss wrote:

Hi Predrag,

you can find binary packages at ftp://openqa.oi.mnowak.cz/.

Install virtualbox_6.1_20191219.p5p on the host and restart. Then
install virtualbox-additions_6.1_20191219.p5p to OpenIndiana VirtualBox VM.



You can install either package like this:

 pfexec pkg apply-hot-fix -v /tmp/virtualbox_6.1_20191219.p5p

Thanks,
Michal


Heh, does not work:

:; pfexec pkg apply-hot-fix -v
/nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p
Resolved URL to:
file:///nobackup/Virtualization/VirtualBox/virtualbox_6.1_20191219.p5p


Retrieving installed package list...
Scanning package archive...
    pkg://userland/system/virtualbox not installed, skipping.

pkg: None of the packages in this hot-fix are installed.

Maybe I have to add something to command line?

Thanks and regards



I think that for "apply-hot-fix" to work, VirtualBox (of any
version) needs to be installed. "apply-hot-fix" then works as
update mechanism.

Michal


Hi Michal,

Yes, I do have it (and actually using every day --one Windows guest,
few Linux, etc...):

:; pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0
  i--

:; pkg info virtualbox
    Name: system/virtualbox
     Summary: VirtualBox - general-purpose full virtualizer
    Category: System/Virtualization
   State: Installed
   Publisher: openindiana.org
     Version: 6.0.14
  Branch: 2019.0.0.0
  Packaging Date: Thu Oct 31 11:42:39 2019
Last Install Time: Fri Nov  1 14:32:26 2019
    Size: 118.66 MB
    FMRI:
pkg://openindiana.org/system/virtualbox@6.0.14-2019.0.0.0:20191031T114239Z


  Source URL:
http://download.virtualbox.org/virtualbox/6.0.14/VirtualBox-6.0.14.tar.bz2


     Project URL: http://www.virtualbox.org/

Regards.


I think it does not see the local package as an update because it's
from the 'userland' publisher, but the installed system/virtualbox
package comes form the official 'openindiana.org' publisher.

In a test BE, can you remove
'consolidation/userland/userland-incorporation' and 'entire' packages
and then try the 'apply-hot-fix' exercise agains, please?

Thanks,
Michal



Hi Michal,

still no luck:

:; pkg list consolidation/userland/userland-incorporation entire

pkg list: no packages matching the following patterns are installed:
    consolidation/userland/userland-incorporation
    entire

pkg apply-hot-fix has failed with same error.

Regards.


___

Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - almost compiles

2020-01-02 Thread Michal Nowak via openindiana-discuss

Thanks Predrag for your testing, very much appreciated.

Sadly, I am afraid I don't know enough audio stuff to be of help with 
your mic issue...


Michal

On 01/02/20 10:17 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 12/23/19 13:51, Espen Martinsen wrote:

Hi,

    VB 6.1.0
    Scaled mode works
    Full screen works
    Seamless on w10 with VboxSVGA  do not work, I've never used it som I
dont' know if it has ever worked.
 - It alwost works, can toggle on/off, windows is coming in theri
own window, but Win-menu cannot be opened.

    Seamless on debian-variant (4.19) and VMSVGA  works fine.

    Both w10 and Kali (the debian variant) was tested with additions
first 6.0.4 and then upgraded to 6.1.0.

    Both w10 and Kali plays "Merry Christmas Mr Bean" from youtube very
well

    I'm sorry I cannot test microphone, it have never even worked in
host-OS (hardware-error).

-espenM



On 12/21/19 4:11 PM, Michal Nowak via openindiana-discuss wrote:

On 12/20/19 03:48 PM, Espen Martinsen wrote:

Success!


$pfexec pkg update --be-name OIhipster-20191220
reboot

$ uname -a
SunOS esmpc 5.11 illumos-028b5df8ad i86pc i386 i86pc illumos

$ pkg list -H virtualbox
system/virtualbox 6.0.14-2019.0.0.0

$pfexec beadm create -d Testing_VB610 VBtest
$pfexec beadm activate VBtest

reboot

$pfexec pkg uninstall system/virtualbox

### putting the .p5p files in /var/userland ###

$pfexec pkg unset-publisher  "*" openindiana.org
$pfexec pkg set-publisher-p/var/userland/virtualbox_6.1_20191219.p5p
userland
$pfexec pkg uninstallentire@0.5.11-2018.0.0.0
$pfexec pkg uninstall consolidation/userland/userland-incorporation
$pfexec pkg install virtualbox
$pfexec pkg list -H virtualbox
$system/virtualbox (userland)
6.1.0-2019.0.0.0   i--

reboot

Additions from virtualbox.de on win10 guest:  Sound Absolutely very
good!
(setting HostAudio: PulseAudio, Controller: Intel HD Audio)

That's great, Espen! Can you also check that Seamless Mode works (if
it worked before)?

Thanks.
Michal



Hi Espen, Michal, all.

Happy New year to all of you! I am looking forward for new stuff on OI...


Finally I have managed to test VB 6.1. After installing it into separate 
BE, rebooting, adding VBOX Additions, I have booted my win10 guest.


Seamless mode works as before (not perfect, but usable).
There is nothing else which makes guest to run worse then in VB 6.0.

I still have microphone problem in guest (work on OI - tested). That is 
probably consequence of some problems on host: pulseaudio "works", but 
volume applet cannot control it (also dow not show hardare device it 
uses). I am using NVIDIA driver 440 (not OI one - that also might cause 
some problems. BTW, tried to remove it and use OI one, but X server dies 
- another problem to solve)


With best regards.
Predrag Zečević

P.S. I have decided to keep VB 6.1 (maybe, if I have time, will try some 
linux guests with GUI and Audio):


:; pfexec pkg unset-pulisher userland
...
:; pfexec pkg set-publisher -O http://pkg.openindiana.org/hipster 
--search-first openindiana.org

...
:; pfexec init 6



___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Major time sync booting the gui installer

2020-01-05 Thread Michal Nowak via openindiana-discuss

On 01/05/20 03:06 AM, Harry Putnam wrote:

I've tried booting the latest 1910 iso several times on vbox vm and
seems to be the slowest thing imaginable, its been running for 10
minutes now and hasn't completely cleared the boot screen... still
part of it visible.

I made 3 other attempts about a week ago and had the same long long
experience.

Is this just happening on my end or are others having a problem like this?


For me OI works reasonably well on OpenIndiana's VirtualBox.

Can you state the host's VirtualBox version and OS, host's CPU, VM's RAM 
assigned and storage type used?


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] Critical security issue in Firefox fixed (CVE-2019-17026)

2020-01-12 Thread Michal Nowak via openindiana-discuss

Folks,

you may have heard that zero-day vulnerability CVE-2019-17026 in Firefox 
was recently fixed by Mozilla in their mainline and 68 ESR streams.


Information about the CVE are scarce and the official information from 
Mozilla and distro vendors is "upgrade to Firefox 72.0.1 and Firefox ESR 
68.4.1", which is of no help for us, because we only deliver the old 
unsupported ESR version 60.


The information I gathered and the patch I identified are in 
https://github.com/OpenIndiana/oi-userland/pull/5470. If someone has 
knowledge in this area, can verify my reasoning or the patch in the PR, 
please do so.


In any case the fix is now merged and available from our repo as 
pkg://openindiana.org/web/browser/firefox@60.9.0,5.11-2019.0.0.1.


Please update Firefox soon.

Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Critical security issue in Firefox fixed (CVE-2019-17026)

2020-01-12 Thread Michal Nowak via openindiana-discuss

On 01/12/20 07:38 PM, Apostolos Syropoulos via openindiana-discuss wrote:

It would be helpful to give the command by which we canupdate our browser. The 
"obvious" thing fails:
# pkg update pkg://openindiana.org/web/browser/firefox@60.9.0,5.11-2019.0.0.1
Creating Plan (Solver setup): -
pkg update: No matching version of web/browser/firefox can be installed:
   Reject:  pkg://openindiana.org/web/browser/firefox@60.9.0-2019.0.0.1
   Reason:  This version is excluded by installed incorporation 
consolidation/userland/userland-incorporation@0.5.11-2019.0.0.12423


Since you have consolidation/userland/userland-incorporation in place, 
you should run `pkg update` and get the whole package after restart.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] Firefox user agent override for GitHub

2020-01-19 Thread Michal Nowak via openindiana-discuss

Hi,

recently GitHub stopped supporting Firefox 60 ESR, making portions of 
the site unusable for our browser.


Before Firefox 68 ESR is available this is how you override the GitHub 
check:


Open about:config in Firefox, add "general.useragent.override" name of a 
string type, set it's value to "Mozilla/5.0 (X11; SunOS i86pc; rv:68.0) 
Gecko/20100101 Firefox/68.0".


Make sure you remove the override preference, when Firefox 68 ESR is 
available.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] What pkgs for building gnu stuff

2020-01-20 Thread Michal Nowak via openindiana-discuss

On 01/19/20 05:55 AM, Harry Putnam wrote:

Does openindian have a package cluster or something similar for
working gnu software building?

If not what are the packages I would need for building emacs?


I don't know what is "package cluster", but we provide the latest GNU 
Emacs and thus also it's build dependencies, see 
https://github.com/OpenIndiana/oi-userland/blob/oi/hipster/components/editor/emacs/Makefile#L186 
for the list.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Lost time slider and network icons

2020-01-20 Thread Michal Nowak via openindiana-discuss

On 01/18/20 04:50 PM, Harry Putnam wrote:

Recently install from an old image 1710?? since it seemed I could not
get the newest installed


Newer OpenIndiana snapshots are expected to work in VirtualBox. If they 
don't we need the information to fix that.




This is on Vbox as guest on an OI host

Following a full update, on reboot, something popped up about an icon
saying it needed attention and did I wan to delete it... I foolishly
clicked the delete to allow the startup to finish.

So, apparently the trouble was with the icons now missing.  Timeslider
and network up in the right corner.

Desktop is Mate.
How would I go about re-establish those icons?


Start `mate-session-properties` from terminal and make sure that 
"Network Auto-magic Manager applet" and "Time Slider notification 
applet" are present and enabled.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Odd pager behavior folowing major update

2020-01-29 Thread Michal Nowak via openindiana-discuss

On 29/01/2020 17:39, Harry Putnam wrote:

Setup:
Hardware: HP xw8600 2x xeon 3.00 hgz
Running OI/hipster v. 2019.11.06 with most recent updates

I just updated from a quite an old version of hipster, from
2018-02-09

Great thanks to developers of hipster .. that is pretty big jump to
survive with no serious problems.

Following the update I have not noticed any really major problems.

However I do see something quite odd in the virtual desktops of Mate

Icons inside the small desktop view on panel are sometimes nearly invisible.
Only represented by what looks like a line drawing of a box. That is a
hollow rectangle made of a dim dark gray line.

I have not divined yet what cause some to be plainly visible and other
not. It does not follow specific icons that is, the nearly invisble
happen sort of randomly.  although at least two seem to persist
What is mostly represented in them are icons of Vbox vms running on
VB version 6.0.14 installed by pkg tools.

It also happens to xterms, Mate-terminals, etc.

No indication of what the rectangle represents until clicked

Wondering if anyone else has noticed anything similar and further what
might be done to fix it.


Can you please attach a screenshot so I have a better idea of what is 
happening?


Thanks,
Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] node/npm question(s)

2020-01-31 Thread Michal Nowak via openindiana-discuss

On 01/31/20 01:54 PM, Predrag Zecevic - Unix Systems Administrator wrote:

Hi all,

I have strange feeling that something is wrong with nodejs. I have 
installed:

:; pkg list | grep nodejs
runtime/nodejs    0.12.18-2018.0.0.2 
i--
runtime/nodejs-10 10.18.1-2019.0.0.0 
i--
runtime/nodejs-12 12.14.1-2019.0.0.0 
i--

runtime/nodejs-6  6.17.1-2018.0.0.0     i--
runtime/nodejs-8  8.17.0-2019.0.0.0     i--

Default is:
:; pkg mediator nodejs
MEDIATOR    VER. SRC. VERSION IMPL. SRC. IMPLEMENTATION
nodejs  system    12  system

This command works:
:; node --version
v12.14.1

But this exists terminal (and works fine on Linux):
:; npm ---version # same is true for 'npm version' command

When I call it like this, it works:
:; npm --version |& tee
6.13.4


Hi Predrag,

all of these commands work for me both in local and global zone with 
runtime/nodejs-12, terminal is kept alive after the npm command finished.


Can you truss the command like this and upload the log somewhere?

  truss -o log1 npm --version

Or maybe you will need to be more creative and run it like this:

  truss -o log2 sh -c 'npm --version'

Michal



Am I doing something wrong here?

Regards.

P.S:
:; npm init  # worked fine
:; npm install xterm # from https://xtermjs.org/ - has finished 
installation, but then exited terminal - very annoying




___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] First cluster after 20 years

2020-02-02 Thread Michal Nowak via openindiana-discuss

On 02/02/20 05:48 AM, Mark Kosmowski wrote:

I'm putting together a home lab / cluster for computational chemistry as a
private individual.  I'm thinking OpenIndiana on the head node (for a
desktop) and OmniOS on the compute nodes.  Are there any downsides to this
that I should be mindful of?

Thanks!


The possible downside is a different set of software provided by 
OpenIndiana and OmniOS (OpenIndiana is a traditional distribution with 
large set of packages software, OmniOS tries to keep it's software stack 
small) and whether you need to interact between nodes of various types. 
If compute nodes are meant to be separated from the head node, it should 
work without a problem. OpenIndiana on compute will work too.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] node/npm question(s)

2020-02-03 Thread Michal Nowak via openindiana-discuss

On 02/03/20 09:04 AM, Predrag Zecevic - Unix Systems Administrator wrote:


On 01/31/20 21:47, Michal Nowak via openindiana-discuss wrote:

On 01/31/20 01:54 PM, Predrag Zecevic - Unix Systems Administrator wrote:

Hi all,

I have strange feeling that something is wrong with nodejs. I have 
installed:

:; pkg list | grep nodejs
runtime/nodejs    0.12.18-2018.0.0.2 i--
runtime/nodejs-10 10.18.1-2019.0.0.0 i--
runtime/nodejs-12 12.14.1-2019.0.0.0 i--
runtime/nodejs-6  6.17.1-2018.0.0.0 
    i--
runtime/nodejs-8  8.17.0-2019.0.0.0 
    i--


Default is:
:; pkg mediator nodejs
MEDIATOR    VER. SRC. VERSION IMPL. SRC. IMPLEMENTATION
nodejs  system    12  system

This command works:
:; node --version
v12.14.1

But this exists terminal (and works fine on Linux):
:; npm ---version # same is true for 'npm version' command

When I call it like this, it works:
:; npm --version |& tee
6.13.4


Hi Predrag,

all of these commands work for me both in local and global zone with 
runtime/nodejs-12, terminal is kept alive after the npm command finished.


Can you truss the command like this and upload the log somewhere?

   truss -o log1 npm --version

Or maybe you will need to be more creative and run it like this:

   truss -o log2 sh -c 'npm --version'

Michal


Hi Michal,

https://app.box.com/s/93hthxgd3g8w43nct9vvtuhmfj3es63y contains zipped 
output from

:; truss -o /tmp/npm.truss npm -version


As Till foresaw, you are getting SIGHUP, where you shouldn't:

 newman  ~  tail npm.truss
...
/1: write(20, " 6 . 1 3 . 4\n", 7)  = 7
/1: write(20, 0xFFDF9850, 0)= 0
/2: Received signal #1, SIGHUP, in port_getn() [default]
/2:   siginfo: SIGHUP pid=1166 uid=2903
/3: Received signal #1, SIGHUP, in lwp_park() [default]
/2: port_getn(10, 0xEED88EC0, 1024, 1, 0x)  Err#4 EINTR
/3: lwp_park(0x, 0) Err#4 EINTR
/4: Received signal #25, SIGCONT, in lwp_park() [default]
/1: Received signal #24, SIGTSTP [default]

Do you run this command in zone? Does it go away when connected via SSH, 
or, perhaps, `zlogin -C ...`? Can you update your system?


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] DNLA Server

2020-02-03 Thread Michal Nowak via openindiana-discuss

On 02/03/20 06:17 PM, david allan finch wrote:

Hi,

Is there a package for a DNLA server?
What is the best one to build if there isn't one already done?

Thanks


Hi,

media/minidlna was packaged recently. Let us know how it works for you.

Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] node/npm question(s)

2020-02-06 Thread Michal Nowak via openindiana-discuss

On 02/06/20 12:27 PM, Predrag Zecevic - Unix Systems Administrator wrote:

On 02/03/20 09:41, Predrag Zecevic - Unix Systems Administrator wrote:

On 02/03/20 09:34, Michal Nowak via openindiana-discuss wrote:
On 02/03/20 09:04 AM, Predrag Zecevic - Unix Systems Administrator 
wrote:


On 01/31/20 21:47, Michal Nowak via openindiana-discuss wrote:
On 01/31/20 01:54 PM, Predrag Zecevic - Unix Systems Administrator 
wrote:

Hi all,

I have strange feeling that something is wrong with nodejs. I have 
installed:

:; pkg list | grep nodejs
runtime/nodejs 0.12.18-2018.0.0.2 i--
runtime/nodejs-10 10.18.1-2019.0.0.0 i--
runtime/nodejs-12 12.14.1-2019.0.0.0 i--
runtime/nodejs-6  
6.17.1-2018.0.0.0     i--
runtime/nodejs-8  
8.17.0-2019.0.0.0     i--


Default is:
:; pkg mediator nodejs
MEDIATOR    VER. SRC. VERSION IMPL. SRC. IMPLEMENTATION
nodejs  system    12  system

This command works:
:; node --version
v12.14.1

But this exists terminal (and works fine on Linux):
:; npm ---version # same is true for 'npm version' command

When I call it like this, it works:
:; npm --version |& tee
6.13.4


Hi Predrag,

all of these commands work for me both in local and global zone 
with runtime/nodejs-12, terminal is kept alive after the npm 
command finished.


Can you truss the command like this and upload the log somewhere?

   truss -o log1 npm --version

Or maybe you will need to be more creative and run it like this:

   truss -o log2 sh -c 'npm --version'

Michal


Hi Michal,

https://app.box.com/s/93hthxgd3g8w43nct9vvtuhmfj3es63y contains 
zipped output from

:; truss -o /tmp/npm.truss npm -version


As Till foresaw, you are getting SIGHUP, where you shouldn't:

  newman  ~  tail npm.truss
...
/1: write(20, " 6 . 1 3 . 4\n", 7)  = 7
/1: write(20, 0xFFDF9850, 0)    = 0
/2: Received signal #1, SIGHUP, in port_getn() [default]
/2:   siginfo: SIGHUP pid=1166 uid=2903
/3: Received signal #1, SIGHUP, in lwp_park() [default]
/2: port_getn(10, 0xEED88EC0, 1024, 1, 0x)  Err#4 EINTR
/3: lwp_park(0x, 0) Err#4 EINTR
/4: Received signal #25, SIGCONT, in lwp_park() [default]
/1: Received signal #24, SIGTSTP [default]

Do you run this command in zone? Does it go away when connected via 
SSH, or, perhaps, `zlogin -C ...`? Can you update your system?


Michal



Hi all,

nope. This is from GZ.

Yes, I can update system ...
BTW, I keep it up to date as possible, writing from:
:; uname -rosv
SunOS 5.11 illumos-c6f039c73e illumos

:; :; beadm list oi_200131.nv440_vbox61
BE Active Mountpoint Space Policy Created
oi_200131.nv440_vbox61 NR /  72,2G static 2020-01-31 11:43

So, last BE updates was few days ago... I will send update once system 
is rebooted.


With best regards.
Predrag Zečević


___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss




Hi all,

I have (right now) updated BE and writing from it...

:; beadm list oi_200206.nv440_vbox61
BE Active Mountpoint Space Policy Created
oi_200206.nv440_vbox61 NR /  75,5G static 2020-02-06 12:01

:; uname -rosv
SunOS 5.11 illumos-5801b0f01c illumos


Unfortunately, the problem is not gone:
* new truss file https://app.box.com/s/m2b7yef0ngowcb4ey396yfj3q2yc9htp 
* created with command

:; truss -o /tmp/npm.truss.$(date '+%Y%m%dT%H%M%S') npm -version
* file is then compressed with xz


Hi, I don't know how to tackle this myself, so I filed a bug to illumos: 
https://www.illumos.org/issues/12286.


Can you run this again but this time take a note of the PID of the 
terminal, where you eventually start the `npm` command, first and then 
truss the `npm` command as before and send just the last 10 lines of the 
truss log.


Thanks,
Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] node/npm question(s)

2020-02-09 Thread Michal Nowak via openindiana-discuss

On 02/07/20 08:55 AM, Predrag Zecevic - Unix Systems Administrator wrote:

Hi Michal,

What I have found this morning is that that "error" happens only in 
terminator (terminal), while it works as expected in mate-terminal...

:; ps -ef| grep mate[-]terminal
   global predrag* 16447  1805   0 08:45:46 ?   0:00 mate-terminal

Then in that terminal (no exit):
:; npm -version
6.13.4

I am running
:; ps -ef| grep terminato[r]
   global predrag*  1863  1805   1 12:11:03 ?  18:08 
/usr/bin/python2.7 /usr/bin/terminator


In terminator tab (no screen, or tmux) I have started:
:; truss -o /tmp/npm.truss.$(date '+%Y%m%dT%H%M%S') npm -version

and that tab has exited, Last 15 lines of that truss file:
:; tail -15 /tmp/npm.truss.20200207T085312
/1: close(23)   = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: write(20, " 6 . 1 3 . 4\n", 7)  = 7
/1: write(20, 0xFFDF99E0, 0)    = 0
/1: Received signal #24, SIGTSTP [default]
/2: Received signal #1, SIGHUP, in port_getn() [default]
/2:   siginfo: SIGHUP pid=16511 uid=2903
/1: Received signal #25, SIGCONT [default]
/2: port_getn(10, 0xEED88EC0, 1024, 1, 0x)  Err#4 EINTR
/3: Received signal #1, SIGHUP, in lwp_park() [default]

So, can you try it (too) in terminator session?


Yes, I can see the problem in Terminator. I even porter Terminator from 
Python to Python 3, but it still get terminated. Terminator is 
unfortunately not very lively project these days and I don't see any 
prospect in filing bug upstream. I also did not found any other record 
of someone having this particular problem.


I am afraid we don't have any other tiling terminal at this moment...

The best what I can suggest is to set "When command exits" in 
Preferences -> Profiles -> Command to something else than "Exit the 
terminal". Not perfect but at least you'll get the command's output.


Still a backtrace will occur on stderr:

Traceback (most recent call last):
  File "/usr/lib/python3.5/vendor-packages/terminatorlib/terminal.py", 
line 1386, in spawn_child

dbg('spawning debug session with: %s:%s' % (details[0],
TypeError: 'NoneType' object is not subscriptable
0xbc8290)> is not in registered window list


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] node/npm question(s)

2020-02-11 Thread Michal Nowak via openindiana-discuss

On 02/11/20 10:49 AM, Predrag Zecevic - Unix Systems Administrator wrote:

On 02/09/20 16:32, Michal Nowak via openindiana-discuss wrote:

On 02/07/20 08:55 AM, Predrag Zecevic - Unix Systems Administrator wrote:

Hi Michal,

What I have found this morning is that that "error" happens only in 
terminator (terminal), while it works as expected in mate-terminal...

:; ps -ef| grep mate[-]terminal
   global predrag* 16447  1805   0 08:45:46 ?   0:00 
mate-terminal


Then in that terminal (no exit):
:; npm -version
6.13.4

I am running
:; ps -ef| grep terminato[r]
   global predrag*  1863  1805   1 12:11:03 ?  18:08 
/usr/bin/python2.7 /usr/bin/terminator


In terminator tab (no screen, or tmux) I have started:
:; truss -o /tmp/npm.truss.$(date '+%Y%m%dT%H%M%S') npm -version

and that tab has exited, Last 15 lines of that truss file:
:; tail -15 /tmp/npm.truss.20200207T085312
/1: close(23)   = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_WRITE) = 0
/1: mprotect(0x40DC2000, 249856, PROT_READ|PROT_EXEC) = 0
/1: write(20, " 6 . 1 3 . 4\n", 7)  = 7
/1: write(20, 0xFFDF99E0, 0)    = 0
/1: Received signal #24, SIGTSTP [default]
/2: Received signal #1, SIGHUP, in port_getn() [default]
/2:   siginfo: SIGHUP pid=16511 uid=2903
/1: Received signal #25, SIGCONT [default]
/2: port_getn(10, 0xEED88EC0, 1024, 1, 0x)  Err#4 EINTR
/3: Received signal #1, SIGHUP, in lwp_park() [default]

So, can you try it (too) in terminator session?


Yes, I can see the problem in Terminator. I even porter Terminator 
from Python to Python 3, but it still get terminated. Terminator is 
unfortunately not very lively project these days and I don't see any 
prospect in filing bug upstream. I also did not found any other record 
of someone having this particular problem.


I am afraid we don't have any other tiling terminal at this moment...

The best what I can suggest is to set "When command exits" in 
Preferences -> Profiles -> Command to something else than "Exit the 
terminal". Not perfect but at least you'll get the command's output.


Still a backtrace will occur on stderr:

Traceback (most recent call last):
   File 
"/usr/lib/python3.5/vendor-packages/terminatorlib/terminal.py", line 
1386, in spawn_child

 dbg('spawning debug session with: %s:%s' % (details[0],
TypeError: 'NoneType' object is not subscriptable
0xbc8290)> is not in registered window list


Michal


Hi Michal, all,

this was not only 'terminator' problem, but also 'tmux' one (running 
within 'terminator'): it also exits. I did small experiment in 
'mate-terminal' I have started 'tmux' session, and pane is also killed 
when trying to find out npm version!


This can be prevented in 'tmux' with following configuration directives 
(bind-keys 'R' and 'r' should be free, or use another letters):


bind-key R set-option remain-on-exit on
bind-key r respawn-pane

This is annoying too, since you have to respawn or kill pane...
Here example of use of 'tmux' directives:

---8<--
:; tmux set-option remain-on-exit on
:; npm --version
6.13.4


Pane is dead (signal 1, Tue Feb 11 10:15:41 2020)
---8<--


NOTE: 'screen' utility handles all OK, so tab is not exited on 'npm 
--version' call in either combination with terminal programs


Regards


Hi Predrag,

yes, I can see the same behavior in `tmux` when in Xterm. Strange, but 
at least we know it's not the Terminator terminal.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - Test results

2020-02-19 Thread Michal Nowak via openindiana-discuss

On 02/19/20 09:33 AM, Carl Brewer wrote:

Wondering if this has been rolled into OI yet?  I don't see it here :

https://github.com/OpenIndiana/oi-userland/tree/oi/hipster/components/sysutils/virtualbox 


I am sorry for the delay, for some time I was unable to build VirtualBox 
on two separate machines. Now it's fixed and VirtualBox 6.1 was 
integrated. Please test.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Virtualbox 6.1.0 on OI - Test results

2020-02-26 Thread Michal Nowak via openindiana-discuss

On 26/02/2020 14:19, Carl Brewer wrote:

Hey Michal,
If you could bump the version to 6.1.4, I'm happy to test it for you

cheers!

Carl



Hi Carl,

here's the PR: https://github.com/OpenIndiana/oi-userland/pull/5578.

Let me know how the testing went.

Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] mate release 1.24

2020-02-27 Thread Michal Nowak via openindiana-discuss

On 27/02/2020 18:00, bscuk2 wrote:
Mate desktop version 1.24 has been released with a number of updates 
2020-02-10 09:00. 


Is this likely to be something to be included in the next snapshot ?

Regards,

Robert Jones



Hi.

It's being worked on. Current progress here: 
https://github.com/OpenIndiana/oi-userland/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aopen+mate+1.24.


Michal

___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss