Re: [OpenIndiana-discuss] Heads-up: Python 3.7 reached EOL, please uninstall it

2024-01-29 Thread Apostolos Syropoulos via openindiana-discuss
>Your system is apparently not up-to-date.  There is already
>developer/dtrace/toolkit@0.99-2023.0.0.7 that does not depend on
>runtime/python-37.  So to solve, just update.


aposyro@adalind>> more /etc/motd 

The illumos Project illumos-ae676b1204  December 2023

I update my system twice every year... 

A.S.

--Apostolos Syropoulos
Xanthi, Greece
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Heads-up: Python 3.7 reached EOL, please uninstall it

2024-01-29 Thread Apostolos Syropoulos via openindiana-discuss
I have entered the command mentioned in your message and here is what I get:
# pkg uninstall -v runtime/python-37   'library/python/*-37' 
web/server/apache-24/module/apache-wsgi-37

pkg uninstall: 'web/server/apache-24/module/apache-wsgi-37' matches no 
installed packages
# pkg uninstall -v runtime/python-37   'library/python/*-37'
Creating Plan (Solver setup): \
pkg uninstall: Unable to remove 'runtime/python-37@3.7.16-2023.0.0.2' due to 
the following packages that depend on it:
  developer/dtrace/toolkit@0.99-2022.0.0.6


--Apostolos Syropoulos
Xanthi, Greece



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


Re: [OpenIndiana-discuss] compiling PODOFO

2024-01-07 Thread Apostolos Syropoulos via openindiana-discuss
Thank you very much for your comment. This way is definitelythe way to compile 
using cmake. I am not really so familiar with 
cmake and my "hack" was really dirty.
Best regards,Apostolos
--Apostolos Syropoulos
Xanthi, Greece



 

On Sunday, January 7, 2024 at 02:42:05 PM GMT+2, Till Wegmueller 
 wrote:  
 
 Hi Apostolos

You can also set these variables via Commandline by using "-D". Examples 
the patch bellow can be exoressed as

 > $ export 
PKG_CONFIG_PATH=/usr/openssl/3.1/lib/amd64/pkgconfig:/usr/lib/amd64/pkgconfig$ 
CC=/usr/bin/gcc-13 CXX=/usr/bin/g++-13 cmake 
-DPODOFO_BUILD_LIB_ONLY=FALSE -DPODOFO_BUILD_EXAMPLES=FALSE 
-DPODOFO_BUILD_TOOLS=TRUE -DPODOFO_BUILD_STATIC=TRUE ..$ make 
DESTDIR=/tmp/temp

Hope this helps
-Till

On 07.01.2024 12:50, Apostolos Syropoulos via openindiana-discuss wrote:
> I have finally managed to compile the podofo tools and the library butI was 
> mainly interested in the tools. First, I had to download the latestversion 
> from
> 
> https://github.com/podofo/podofo/tree/0.10.x
> For some reason, one cannot easily find this version...  Next, I "patched" 
> file
> CMakeLists.txt to create the tools (by default it creates a shared library). 
> Therequired changes are shown below:
> --- podofo-0.10.x/CMakeLists.txt    2023-12-13 12:25:04.0 +0200
> +++ podofo-0.10.x-NEW/CMakeLists.txt    2024-01-07 12:58:05.438243700 +0200
> @@ -43,6 +43,7 @@
>   # variable here that we require to be set elsewhere, otherwise we'll 
>complain.
>   set(PODOFO_MAIN_CMAKELISTS_READ TRUE)
>  
> +set(PODOFO_BUILD_LIB_ONLY FALSE)
>   if(PODOFO_BUILD_LIB_ONLY)
>   set(PODOFO_BUILD_TEST FALSE)
>   set(PODOFO_BUILD_EXAMPLES FALSE)
> @@ -53,11 +54,11 @@
>   endif()
>  
>   if (NOT DEFINED PODOFO_BUILD_EXAMPLES)
> -    set(PODOFO_BUILD_EXAMPLES TRUE)
> +    set(PODOFO_BUILD_EXAMPLES FALSE)
>   endif()
>  
>   if (NOT DEFINED PODOFO_BUILD_TOOLS)
> -    set(PODOFO_BUILD_TOOLS FALSE)
> +    set(PODOFO_BUILD_TOOLS TRUE)
>   endif()
>  
>   # We assume a standalone build so we set output
> @@ -72,7 +73,7 @@
>   message(FATAL_ERROR "PODOFO_BUILD_SHARED shouldn't be defined 
>externally. Set PODOFO_BUILD_STATIC to TRUE if you need a static build")
>   endif()
>  
> -option(PODOFO_BUILD_STATIC "Build static libraries (.a/.lib)" FALSE)
> +option(PODOFO_BUILD_STATIC "Build static libraries (.a/.lib)" TRUE)
>   if(PODOFO_BUILD_STATIC)
>   set(PODOFO_BUILD_SHARED FALSE)
>   add_compile_definitions(PODOFO_STATIC)
> Then I created a folder in which the build process would take place. There I 
> gave thefollowing commands to build the binaries:
> 
> $ export 
> PKG_CONFIG_PATH=/usr/openssl/3.1/lib/amd64/pkgconfig:/usr/lib/amd64/pkgconfig$
>  CC=/usr/bin/gcc-13 CXX=/usr/bin/g++-13 cmake ..$ make
> 
> The binaries can be "installed" in /tmp/temp using the command
> $ make install DESTDIR=/tmp/temp . From, there one can copy them in any 
> location.
> Hope this will help others to build podofo easy.
> Regards,A.S.
> --Apostolos Syropoulos
> Xanthi, Greece
> 
> 
>  
> 
>      On Friday, January 5, 2024 at 09:53:42 PM GMT+2, Goetz T. Fischer 
> wrote:
>  
>  maybe you have to set a different c++ standard. enable verbose build to see 
>the actual g++ command.
> 
> On Fri, 5 Jan 2024 19:37:42 + (UTC), Apostolos Syropoulos via 
> openindiana-discuss wrote:
>> Hello,
>>
>> I tried to compile PODOFO with gcc 13 and I get the following error:
>>
>>
>> [ 65%] Building CXX object 
>> test/unit/CMakeFiles/podofo-test.dir/ParserTest.cpp.o
>> [ 65%] Building CXX object 
>> test/unit/CMakeFiles/podofo-test.dir/TokenizerTest.cpp.o
>> [ 66%] Building CXX object 
>> test/unit/CMakeFiles/podofo-test.dir/StringTest.cpp.o
>> In file included from /usr/include/cppunit/TestAssert.h:8,
> 
> ___
> 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

___
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] compiling PODOFO

2024-01-07 Thread Apostolos Syropoulos via openindiana-discuss
I have finally managed to compile the podofo tools and the library butI was 
mainly interested in the tools. First, I had to download the latestversion from 

https://github.com/podofo/podofo/tree/0.10.x
For some reason, one cannot easily find this version...  Next, I "patched" file
CMakeLists.txt to create the tools (by default it creates a shared library). 
Therequired changes are shown below:
--- podofo-0.10.x/CMakeLists.txt    2023-12-13 12:25:04.0 +0200
+++ podofo-0.10.x-NEW/CMakeLists.txt    2024-01-07 12:58:05.438243700 +0200
@@ -43,6 +43,7 @@
 # variable here that we require to be set elsewhere, otherwise we'll complain.
 set(PODOFO_MAIN_CMAKELISTS_READ TRUE)
 
+set(PODOFO_BUILD_LIB_ONLY FALSE)
 if(PODOFO_BUILD_LIB_ONLY)
 set(PODOFO_BUILD_TEST FALSE)
 set(PODOFO_BUILD_EXAMPLES FALSE)
@@ -53,11 +54,11 @@
 endif()
 
 if (NOT DEFINED PODOFO_BUILD_EXAMPLES)
-    set(PODOFO_BUILD_EXAMPLES TRUE)
+    set(PODOFO_BUILD_EXAMPLES FALSE)
 endif()
 
 if (NOT DEFINED PODOFO_BUILD_TOOLS)
-    set(PODOFO_BUILD_TOOLS FALSE)
+    set(PODOFO_BUILD_TOOLS TRUE)
 endif()
 
 # We assume a standalone build so we set output
@@ -72,7 +73,7 @@
 message(FATAL_ERROR "PODOFO_BUILD_SHARED shouldn't be defined externally. 
Set PODOFO_BUILD_STATIC to TRUE if you need a static build")
 endif()
 
-option(PODOFO_BUILD_STATIC "Build static libraries (.a/.lib)" FALSE)
+option(PODOFO_BUILD_STATIC "Build static libraries (.a/.lib)" TRUE)
 if(PODOFO_BUILD_STATIC)
 set(PODOFO_BUILD_SHARED FALSE)
 add_compile_definitions(PODOFO_STATIC)
Then I created a folder in which the build process would take place. There I 
gave thefollowing commands to build the binaries:

$ export 
PKG_CONFIG_PATH=/usr/openssl/3.1/lib/amd64/pkgconfig:/usr/lib/amd64/pkgconfig$ 
CC=/usr/bin/gcc-13 CXX=/usr/bin/g++-13 cmake ..$ make

The binaries can be "installed" in /tmp/temp using the command
$ make install DESTDIR=/tmp/temp . From, there one can copy them in any 
location.
Hope this will help others to build podofo easy.
Regards,A.S.
--Apostolos Syropoulos
Xanthi, Greece


 

On Friday, January 5, 2024 at 09:53:42 PM GMT+2, Goetz T. Fischer 
 wrote:  
 
 maybe you have to set a different c++ standard. enable verbose build to see 
the actual g++ command.

On Fri, 5 Jan 2024 19:37:42 + (UTC), Apostolos Syropoulos via 
openindiana-discuss wrote:
> Hello,
> 
> I tried to compile PODOFO with gcc 13 and I get the following error:
> 
> 
> [ 65%] Building CXX object 
> test/unit/CMakeFiles/podofo-test.dir/ParserTest.cpp.o
> [ 65%] Building CXX object 
> test/unit/CMakeFiles/podofo-test.dir/TokenizerTest.cpp.o
> [ 66%] Building CXX object 
> test/unit/CMakeFiles/podofo-test.dir/StringTest.cpp.o
> In file included from /usr/include/cppunit/TestAssert.h:8,

___
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


[OpenIndiana-discuss] compiling PODOFO

2024-01-05 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

I tried to compile PODOFO with gcc 13 and I get the following error:


[ 65%] Building CXX object test/unit/CMakeFiles/podofo-test.dir/ParserTest.cpp.o
[ 65%] Building CXX object 
test/unit/CMakeFiles/podofo-test.dir/TokenizerTest.cpp.o
[ 66%] Building CXX object test/unit/CMakeFiles/podofo-test.dir/StringTest.cpp.o
In file included from /usr/include/cppunit/TestAssert.h:8,
from /usr/include/cppunit/TestCase.h:6,
from /usr/include/cppunit/TestCaller.h:5,
from /usr/include/cppunit/extensions/HelperMacros.h:9,
from /container/source/var/podofo-0.9.7/test/unit/StringTest.h:24,
from /container/source/var/podofo-0.9.7/test/unit/StringTest.cpp:21:
/usr/include/cppunit/tools/StringHelper.h: In instantiation of 'typename 
std::enable_if<(! std::is_enum<_Tp>::value), std::__cxx11::basic_string >::type 
CppUnit::StringHelper::toString(const T&) [with T = PoDoFo::PdfString; typename 
std::enable_if<(! std::is_enum<_Tp>::value), std::__cxx11::basic_string >::type 
= std::__cxx11::basic_string]':
/usr/include/cppunit/TestAssert.h:74:50: required from 'static std::string 
CppUnit::assertion_traits::toString(const T&) [with T = PoDoFo::PdfString; 
std::string = std::__cxx11::basic_string]'
/usr/include/cppunit/TestAssert.h:168:58: required from 'void 
CppUnit::assertEquals(const T&, const T&, SourceLine, const std::string&) [with 
T = PoDoFo::PdfString; std::string = std::__cxx11::basic_string]'
/container/source/var/podofo-0.9.7/test/unit/StringTest.cpp:182:5: required 
from here
/usr/include/cppunit/tools/StringHelper.h:25:9: error: no match for 
'operator<<' (operand types are 'CppUnit::OStringStream' {aka 
'std::__cxx11::basic_ostringstream'} and 'const PoDoFo::PdfString')
25 | ost << x;
| ^~~~
In file included from /usr/gcc/13/include/c++/13.2.0/istream:41,
from /usr/gcc/13/include/c++/13.2.0/sstream:40,
from /usr/include/cppunit/portability/Stream.h:283,
from /usr/include/cppunit/TestAssert.h:7:
/usr/gcc/13/include/c++/13.2.0/ostream:110:7: note: candidate: 
'std::basic_ostream<_CharT, _Traits>::__ostream_type& 
std::basic_ostream<_CharT, _Traits>::operator<<(__ostream_type& 
()(__ostream_type&)) [with _CharT = char; _Traits = std::char_traits; 
__ostream_type = std::basic_ostream]'
110 | operator<<(__ostream_type& (__pf)(__ostream_type&))
| ^~~~
/usr/gcc/13/include/c++/13.2.0/ostream:110:36: note: no known conversion for 
argument 1 from 'const PoDoFo::PdfString' to 
'std::basic_ostream::__ostream_type& ()(std::basic_ostream::__ostream_type&)' 
{aka 'std::basic_ostream& ()(std::basic_ostream&)'}
110 | operator<<(__ostream_type& (__pf)(__ostream_type&))
| ~~^~
/usr/gcc/13/include/c++/13.2.0/ostream:119:7: note: candidate: 
'std::basic_ostream<_CharT, _Traits>::__ostream_type& 
std::basic_ostream<_CharT, _Traits>::operator<<(__ios_type& ()(__ios_type&)) 
[with _CharT = char; _Traits = std::char_traits; __ostream_type = 
std::basic_ostream; __ios_type = std::basic_ios]'
119 | operator<<(__ios_type& (__pf)(__ios_type&))
| ^~~~
/usr/gcc/13/include/c++/13.2.0/ostream:119:32: note: no known conversion for 
argument 1 from 'const PoDoFo::PdfString' to 'std::basic_ostream::__ios_type& 
()(std::basic_ostream::__ios_type&)' {aka 'std::basic_ios& ()(std::basic_ios&)'}
119 | operator<<(__ios_type& (__pf)(__ios_type&))
| ~~^~
/usr/gcc/13/include/c++/13.2.0/ostream:129:7: note: candidate: 
'std::basic_ostream<_CharT, _Traits>::__ostream_type& 
std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& 
()(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits; 
__ostream_type = std::basic_ostream]'
129 | operator<<(ios_base& (__pf) (ios_base&))
| ^~~~
/usr/gcc/13/include/c++/13.2.0/ostream:129:30: note: no known conversion for 
argument 1 from 'const PoDoFo::PdfString' to 'std::ios_base& ()(std::ios_base&)'
129 | operator<<(ios_base& (__pf) (ios_base&))
| ^
/usr/gcc/13/include/c++/13.2.0/ostream:168:7: note: candidate: 
'std::basic_ostream<_CharT, _Traits>::__ostream_type& 
std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; 
_Traits = std::char_traits; __ostream_type = std::basic_ostream]'
168 | operator<<(long __n)
| ^~~~
/usr/gcc/13/include/c++/13.2.0/ostream:168:23: note: no known conversion for 
argument 1 from 'const PoDoFo::PdfString' to 'long int'
168 | operator<<(long __n)
| ~^~~
/usr/gcc/13/include/c++/13.2.0/ostream:172:7: note: candidate: 
'std::basic_ostream<_CharT, _Traits>::__ostream_type& 
std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT 
= char; _Traits = std::char_traits; __ostream_type = std::basic_ostream]'
172 | operator<<(unsigned long __n)
| ^~~~
/usr/gcc/13/include/c++/13.2.0/ostream:172:32: note: no known conversion for 
argument 1 from 'const PoDoFo::PdfString' to 'long unsigned int'
172 | operator<<(unsigned long __n)
| ~~^~~
/usr/gcc/13/include/c++/13.2.0/ostream:176:7: note: candidate: 

[OpenIndiana-discuss] audio control problem

2023-10-20 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I have a machine whose audio device is properly recognized by the system,I have 
tried to play sounds with audioplay using the command
$ audioplay file_example_WAV_10MG.wav

And I could hear the sound. I downloaded the file from the following URL:

https://file-examples.com/wp-content/storage/2017/11/file_example_WAV_10MG.wav

The problem is that I hear nothing when I watch a video in youtube. 
In addition, I have to say that the audio utility of the mate controlcenter  
shows no output audio device.  What can I do to make theaudio control see the 
audio device?
Thanks in advance for any help and/or assistance.
Regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] list archives?

2023-07-16 Thread Apostolos Syropoulos via openindiana-discuss
 I am top posting because yahoo mail has this by default...Sometime ago, I 
managed to unsubscribe from the list 
and could not find anywhere how to subscribe to the mailing list.Fortunately, a 
Good Samaritan helped me when I asked in the IRC 
channel. So we definitely, need to have this information somewhereso people can 
use them just in case.
Regards,A.S.  

--Apostolos Syropoulos
Xanthi, Greece



 

On Sunday, July 16, 2023 at 04:24:45 PM GMT+3, James Madgwick 
 wrote:  
 
 Hello,

I was just going through some documentation and noticed this link is
still broken. While it will still be possible to sign up to the mailing
list, there's now no webpage explaining these things.

Do you think that site will be back online or is it gone for good? If
it's gone we'll want to remove the links to it and replace with
instructions for signing up etc. Unless there's a plan to migrate
elsewhere. I would support that, I see mailing lists as increasingly
retro and a barrier to entry for new contributors.


James


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


Re: [OpenIndiana-discuss] installing vlc

2023-02-15 Thread Apostolos Syropoulos via openindiana-discuss
I did not know this. Now it works as expected.Thank you!A.S.

--Apostolos Syropoulos
Xanthi, Greece

 

On Wednesday, February 15, 2023 at 12:53:02 PM GMT+2, Marcel Telka 
 wrote:  
 
 On Wed, Feb 15, 2023 at 09:26:54AM +, Apostolos Syropoulos via 
openindiana-discuss wrote:
> root@emily:~# pkg set-publisher -P -g 
> http://pkg.openindiana.org/hipster-encumbered hipster-encumbered

hipster-encumbered should be always searched after openindiana.org.  The
opposite order is not supported.


HTH.

-- 
+---+
| Marcel Telka  e-mail:  mar...@telka.sk  |
|                homepage: http://telka.sk/ |
+---+
  
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] installing vlc

2023-02-15 Thread Apostolos Syropoulos via openindiana-discuss
Hi,
I tried to install VLC player on a new machine and I did the following:

root@emily:~# pkg set-publisher -P -g 
http://pkg.openindiana.org/hipster-encumbered hipster-encumbered
#
root@emily:~# pkg install ffmpeg@4.4.1
Creating Plan (Solver setup): |
pkg install: No matching version of video/ffmpeg can be installed:
  Reject:  
pkg://hipster-encumbered/video/ffmpeg@4.4.1-2020.0.1.0:20211109T133902Z
  Reason:  No version matching 'require' dependency audio/lame@3.100-2020.0.1.1 
can be installed
    
    Reject:  pkg://openindiana.org/audio/lame@3.100-2020.0.1.1:20210119T073238Z
    Reason:  Higher ranked publisher hipster-encumbered was selected
    Reject:  pkg://openindiana.org/audio/lame@3.100-2022.1.0.2:20221229T220349Z
    Reason:  This version is excluded by installed incorporation 
consolidation/userland/userland-incorporation@0.5.11-2022.0.0.17367
    Reason:  Higher ranked publisher hipster-encumbered was selected
    
  Reject:  
pkg://hipster-encumbered/video/ffmpeg@4.4.1-2022.0.0.1:20220125T233726Z
 to
   
pkg://hipster-encumbered/video/ffmpeg@4.4.1-2022.0.0.2:20220329T212113Z
  Reason:  No version matching 'require' dependency audio/lame@3.100-2020.0.1.1 

As you can see this is not possible. Any clues and/or ideas?
A.S.

--Apostolos Syropoulos
Xanthi, Greece



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


[OpenIndiana-discuss] /export/home on second disk

2023-02-08 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I have a computer that has two harddisks: an ssd and an "ordinary" 
disk.Naturally, I want to install the systemon the SSD disk but at the same 
time I want to have the users directories onthe second disk. Can anyone 
suggesta strategy to realize this requirement?
Regards,
Apostolos
Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] problem with idle3.9

2022-12-01 Thread Apostolos Syropoulos via openindiana-discuss
>Maybe you need to update your installation? Are you sure that you have
>the latest bits?
Indeed. Last night I updated my system and now Python works as expected. Thank 
you.
A.S.
--Apostolos Syropoulos
Xanthi, Greece
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] problem with idle3.9

2022-11-30 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
idle3.9 ( Python's Integrated Development and Learning Environment) is not 
working:

 $ idle3.9
Traceback (most recent call last):
  File "/usr/bin/idle3.9", line 3, in 
    from idlelib.pyshell import main
  File "/usr/lib/python3.9/idlelib/pyshell.py", line 53, in 
    from idlelib.editor import EditorWindow, fixwordbreaks
  File "/usr/lib/python3.9/idlelib/editor.py", line 30, in 
    from idlelib.util import py_extensions
ModuleNotFoundError: No module named 'idlelib.util'

This means that the file 

/usr/lib/python3.9/idlelib/util.py
is missing. I found this file in /tmp/XX/Python-3.9.13/Lib/idlelib/util.pyafter 
decompressing the python distribution to /tmp/ΧΧ I think thisfile must be 
included in the relevant package.
Kind regards,
Apostolos
--Apostolos Syropoulos
Xanthi, Greece



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


Re: [OpenIndiana-discuss] Broken Download Link

2022-08-15 Thread Apostolos Syropoulos via openindiana-discuss
BTW, are there plans to create new images? 

--Apostolos Syropoulos
Xanthi, Greece



 

On Monday, August 15, 2022, 10:02:00 AM GMT+3, Handojo via 
openindiana-discuss  wrote:  
 
 http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-gui-20211031.iso
http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-gui-20211031.usb
http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-text-20211031.iso
http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-text-20211031.usb
http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-minimal-20211031.iso
http://dlc.openindiana.org/isos/hipster/20211031/OI-hipster-minimal-20211031.usb
___
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] idle3.9 not working

2022-06-26 Thread Apostolos Syropoulos via openindiana-discuss
Thank you! i will check it tomorrow.
Regards,A.S.

--Apostolos Syropoulos
Xanthi, Greece


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


[OpenIndiana-discuss] idle3.9 not working

2022-06-24 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I have just updated a computer of mine and idle3.9 does not work:

apostolo@nadya:~$ idle3.9 Traceback (most recent call last):
  File "/usr/bin/idle3.9", line 3, in 
    from idlelib.pyshell import main
  File "/usr/lib/python3.9/idlelib/pyshell.py", line 53, in 
    from idlelib.editor import EditorWindow, fixwordbreaks
  File "/usr/lib/python3.9/idlelib/editor.py", line 30, in 
    from idlelib.util import py_extensions
ModuleNotFoundError: No module named 'idlelib.util'

I think this is a packaging problem (the maintainer of the packageprobably 
forgot to include the missing file). Could someone havea look at it?
Kind regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] Problem updating

2022-06-12 Thread Apostolos Syropoulos via openindiana-discuss
And yes automount works again as expected! 
Kudos to the people who solved this annoying problem.
Regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece

 

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


Re: [OpenIndiana-discuss] Problem updating

2022-06-12 Thread Apostolos Syropoulos via openindiana-discuss
>We had a discussion about service dependency cycles before. The
>introduction of varpd gave problems in some situations. You system may
>have an outdated service that now creates this cycle. In the past it was
>metainit, which has been removed long ago. You should check the root
>cause of your dependency cycle and disable or remove it.
>Regarding metainit we have some release notes from a former release:
>http://docs.openindiana.org/release-notes/2017.04-release-notes/
metainit was the problem. After removing it, the system booted just fine.Thanks 
for the help!
Kindest regards,
Apostolos
--Apostolos Syropoulos
Xanthi, Greece


 

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


[OpenIndiana-discuss] Problem updating

2022-06-11 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
Today I tried to update OI to see whether automount wotks. However, when the 
system booted Igot many errors related to svc services and it was saying 
something about cycling. I have not deletedthe new BE but it is not functional. 
Can anybody let me know if he/she encountered the same problem?
Regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece



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


Re: [OpenIndiana-discuss] Strange (?) error

2022-05-31 Thread Apostolos Syropoulos via openindiana-discuss
The maintainer of apgnasm answered as follows to the same question:

I'm afraid I can't offer much help with non-Linux OS's, but this right here:

but it set boost_program_options_FOUND to FALSE so package
"boost_program_options" is considered to be NOT FOUND


Indicates to me that what's being found is basically a "dummy" configuration 
file which is intentionally setting that to false because either that 
functionality isn't available or it's intentionally being disabled. I'm not 
sure how package management is done on that system but you may want to try to 
either install the actual Boost program options package or if it is installed 
try reconfiguring it or re-installing it.
So I am wondering if the person who actually compiles could help me to resolve 
this problem?
Kind regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece



 

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


Re: [OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread Apostolos Syropoulos via openindiana-discuss

>Did you try compiling the package with GCC 7 instead of GCC 10.3 ?

No this is not the problem:
aposyro@adalind>> cmake ..
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found ZLIB: /usr/lib/64/libz.so (found version "1.2.11") 
-- Found PNG: /usr/lib/64/libpng.so (found version "1.6.37") 
1.6.37
CMake Error at /usr/lib/cmake/Boost-1.76.0/BoostConfig.cmake:141 (find_package):
  Found package configuration file:

    
/usr/lib/cmake/boost_program_options-1.76.0/boost_program_options-config.cmake

  but it set boost_program_options_FOUND to FALSE so package
  "boost_program_options" is considered to be NOT FOUND.  Reason given by
  package:

  No suitable build variant has been found.

  The following variants have been tried and rejected:

  * libboost_program_options.so.1.76.0 (32 bit, need 64)

  * libboost_program_options.a (32 bit, need 64)

Call Stack (most recent call first):
  /usr/lib/cmake/Boost-1.76.0/BoostConfig.cmake:258 (boost_find_component)
  /usr/share/cmake-3.21/Modules/FindBoost.cmake:594 (find_package)
  lib/CMakeLists.txt:88 (find_package)


-- Configuring incomplete, errors occurred!
See also "/container/source/var/apngasm/build/CMakeFiles/CMakeOutput.log".

I think something is wrong with the configuration script for boost. 

Regards.

Apostolos

--Apostolos Syropoulos
Xanthi, Greece


 

  

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


[OpenIndiana-discuss] Strange (?) error

2022-05-29 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I am trying to compile a 64bit binary of the following project
https://github.com/apngasm/apngasm
However, when the configuration process complains that there is something wrong 
with BOOST:
 aposyro@adalind>> cmake ..
-- The C compiler identification is GNU 10.3.0
-- The CXX compiler identification is GNU 10.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found ZLIB: /usr/lib/64/libz.so (found version "1.2.11") 
-- Found PNG: /usr/lib/64/libpng.so (found version "1.6.37") 
1.6.37
CMake Error at /usr/lib/cmake/Boost-1.76.0/BoostConfig.cmake:141 (find_package):
  Found package configuration file:

    
/usr/lib/cmake/boost_program_options-1.76.0/boost_program_options-config.cmake

  but it set boost_program_options_FOUND to FALSE so package
  "boost_program_options" is considered to be NOT FOUND.  Reason given by
  package:

  No suitable build variant has been found.

  The following variants have been tried and rejected:

  * libboost_program_options.so.1.76.0 (32 bit, need 64)

  * libboost_program_options.a (32 bit, need 64)

Call Stack (most recent call first):
  /usr/lib/cmake/Boost-1.76.0/BoostConfig.cmake:258 (boost_find_component)
  /usr/share/cmake-3.21/Modules/FindBoost.cmake:594 (find_package)
  lib/CMakeLists.txt:88 (find_package)


-- Configuring incomplete, errors occurred!
See also "/container/source/var/apngasm/build/CMakeFiles/CMakeOutput.log".

And here are the contents of file CMakeOutput:
The system is: SunOS - 5.11 - i386
Compiling the C compiler identification source file "CMakeCCompilerId.c" 
succeeded.
Compiler: /usr/bin/cc 
Build flags: 
Id flags:  

The output was:
0


Compilation of the C compiler identification source "CMakeCCompilerId.c" 
produced "a.out"

The C compiler identification is GNU, found in 
"/container/source/var/apngasm/build/CMakeFiles/3.21.3/CompilerIdC/a.out"

Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" 
succeeded.
Compiler: /usr/bin/c++ 
Build flags: 
Id flags:  

The output was:
0


Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" 
produced "a.out"

The CXX compiler identification is GNU, found in 
"/container/source/var/apngasm/build/CMakeFiles/3.21.3/CompilerIdCXX/a.out"

Detecting C compiler ABI info compiled with the following output:
Change Dir: /container/source/var/apngasm/build/CMakeFiles/CMakeTmp

Run Build Command(s):/usr/bin/amd64/gmake -f Makefile cmTC_3c1b1/fast && 
/usr/bin/amd64/gmake  -f CMakeFiles/cmTC_3c1b1.dir/build.make 
CMakeFiles/cmTC_3c1b1.dir/build
gmake[1]: Entering directory 
'/container/source/var/apngasm/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3c1b1.dir/CMakeCCompilerABI.c.o
/usr/bin/cc   -v -o CMakeFiles/cmTC_3c1b1.dir/CMakeCCompilerABI.c.o -c 
/usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c
Using built-in specs.
COLLECT_GCC=/usr/bin/gcc-10
Target: x86_64-pc-solaris2.11
Configured with: 
/jenkins/jobs/oi-userland/workspace/components/developer/gcc-10/gcc-releases-gcc-10.3.0/configure
 CC=/usr/gcc/7/bin/gcc CXX=/usr/gcc/7/bin/g++ F77=/usr/gcc/7/bin/gfortran 
FC=/usr/gcc/7/bin/gfortran CFLAGS=-O2 CXXFLAGS=-O2 FFLAGS='  -O3 ' FCFLAGS=-O2 
LDFLAGS=-m64 
PKG_CONFIG_PATH=/usr/openssl/1.0/lib/64/pkgconfig:/usr/lib/amd64/pkgconfig 
--prefix=/usr/gcc/10 --mandir=/usr/gcc/10/share/man --bindir=/usr/gcc/10/bin 
--libdir=/usr/gcc/10/lib --sbindir=/usr/gcc/10/sbin --sbindir=/usr/gcc/10/bin 
--libdir=/usr/gcc/10/lib --libexecdir=/usr/gcc/10/lib --host 
x86_64-pc-solaris2.11 --build x86_64-pc-solaris2.11 --target 
x86_64-pc-solaris2.11 --with-pkgversion='OpenIndiana 10.3.0-oi-3' 
--with-bugurl=https://bugs.openindiana.org --without-gnu-ld 
--with-ld=/usr/bin/ld 
--with-build-time-tools=/usr/gnu/x86_64-pc-solaris2.11/bin --with-gnu-as 
--with-as=/usr/bin/gas --enable-initfini-array LDFLAGS=-R/usr/gcc/10/lib 
--with-diagnostics-urls=auto-if-env --enable-plugins --enable-objc-gc 
--enable-languages=c,c++,fortran,lto,objc --disable-libitm 
enable_frame_pointer=yes
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 10.3.0 (OpenIndiana 10.3.0-oi-3) 
COLLECT_GCC_OPTIONS='-m64' '-v' '-o' 
'CMakeFiles/cmTC_3c1b1.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' 
'-march=x86-64'
 /usr/gcc/10/lib/gcc/x86_64-pc-solaris2.11/10.3.0/cc1 -quiet -v 
/usr/share/cmake-3.21/Modules/CMakeCCompilerABI.c -quiet -dumpbase 
CMakeCCompilerABI.c -m64 -mtune=generic -march=x86-64 -auxbase-strip 
CMakeFiles/cmTC_3c1b1.dir/CMakeCCompilerABI.c.o -version -o /var/tmp//ccduaqtc.s
GNU C17 (OpenIndiana 10.3.0-oi-3) version 10.3.0 (x86_64-pc-solaris2.11)
    compiled by GNU C version 10.3.0, GMP 

[OpenIndiana-discuss] SciPy compilation problem fixed

2022-05-15 Thread Apostolos Syropoulos via openindiana-discuss
Please see:
https://github.com/scipy/scipy/issues/15203
--Apostolos Syropoulos
Xanthi, Greece



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


[OpenIndiana-discuss] A patch for TeXLive

2022-01-04 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I am trying to comlile thr TeXLive sourcetree and a certain point 
compilationstops because the source code definesa struct that is called 
label_t. Nowthere is a struct definition in machtypes.h:>>
>>             30 #if (!defined(_POSIX_C_SOURCE) &&
>>         !defined(_XOPEN_SOURCE)) || \
>>             31  defined(__EXTENSIONS__)
>>             32
>>             33 typedef  struct  _label_t { long val[2]; } label_t;
>>             34
>>             35 #endif /* !defined(_POSIX_C_SOURCE)...
I proposed the following patch:
 #ifdef __sun
#define _XOPEN_SOURCE#endif

but someone objected that 
> Not a patch we should install. That will have who-knows-what-effect on
> who-knows-how-many systems, not just Apostolos (who runs OpenIndiana,
> which no one else does). As I said, renaming your label_t identifier is
> the way to go, IMHO.

The question is: What do you suggest to do?
Best wishes for the new year
Apostolos

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] CDE...

2021-12-19 Thread Apostolos Syropoulos via openindiana-discuss
Maybe some people are missing it.

https://github.com/NsCDE/NsCDE
--Apostolos Syropoulos
Xanthi, Greece



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


[OpenIndiana-discuss] SciPy on OpenIndiana

2021-12-14 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I tried to install SciPy on OpenIndiana using python3.10 For some reason the 
compilationprocess did not work but thanks to the people of SciPy, we now know 
what is wrong and whatcauses the problem. Everything is "documented" at the 
following URL:
https://github.com/scipy/scipy/issues/15203
A.S.

--Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] mouse is not working

2021-12-08 Thread Apostolos Syropoulos via openindiana-discuss

 On Monday, December 6, 2021, 11:01:08 PM GMT+2, Stephan Althaus 
 wrote:  
>Hello!>
>There is a bug somewhere in the USB stack, on systems with USB3 support.
>
>https://www.illumos.org/issues/14226
>
>Iτ is suggested to restart (or disable, enable) hal, maybe this works in >your 
>case, too.

The problem is that once the mouse freezes, I cannot open a terminalor get 
focus to a terminal window...A.S.


--Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] mouse is not working

2021-12-06 Thread Apostolos Syropoulos via openindiana-discuss
As a follow-up  to my previous messag, I have noticed the following in 
Xorg.0.log:

[    90.800] (**) Option "StreamsModule" "usbms"
[  3084.778] (WW) mouse: cannot pop module 'usbms' off mouse device: No such 
device
[  3084.780] (WW) mouse: cannot pop module 'usbms' off mouse device: No such 
device

I did not know this but usbms is the mouse STREAMS module and it makes sense to 
have an irresponsive mouse once there a problem with it. But my question is why 
this happens?Any ideas?
Regards,A.S.

--Apostolos Syropoulos
Xanthi, Greece


 

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


[OpenIndiana-discuss] mouse is not working

2021-12-06 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I have noticed that sometimes the USB (!) mouse stopsworking. Typically, I 
unplug the mouse and plug it ina different USB port and then it works again. 
However, 
I have recently noticed that on some machine the mouseworks again only after 
rebooting the machine. Can anyonesuggest what might be wrong?
Best regards,
Apostolos

--Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Python 3.10.0

2021-11-15 Thread Apostolos Syropoulos via openindiana-discuss
I am quite aware of these fact.

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Τρί, 16 Νοε, 2021 στις 0:04, ο χρήστηςAlex Smith 
(K4RNT) έγραψε:   Python 2.7 and 3.0 are not compatible 
with each other. This occurred several years ago.
Hope you can get this module working! BTW, does pip have numpy in its 
repository?
" 'With the first link, the chain is forged. The first speech censured, the 
first thought forbidden, the first freedom denied, chains us all irrevocably.' 
Those words were uttered by Judge Aaron Satie as wisdom and warning... The 
first time any man's freedom is trodden on, we’re all damaged." - Jean-Luc 
Picard, quoting Judge Aaron Satie, Star Trek: TNG episode "The Drumhead"
- Alex Smith- Lacey, Washington (Olympia, WA metropolitan area)


On Mon, Nov 15, 2021 at 9:16 AM Apostolos Syropoulos via openindiana-discuss 
 wrote:

Hello,
I wanted to play a bit with Python's numpy module. One can install an old 
versionfor Python 2.7.X (it is available as a package). But it is not possible 
to install it withthe latest version of Python that is bundled with the OS. 
Thus I tried to compilethe latest version of Python (3.10.0) and see if I can 
succeed with numpy.I have tried with no extra options etc., but this did not 
work as Python was compiledwithout openssl support. After some experiments, I 
succeeded to build Python with thefollowing options:
CC="gcc-10 -m64" CFLAGS="-I/usr/openssl/1.1/include 
-I/usr/lib/amd64/libffi-3.2.1/include -DFFI_NO_RAW_API" \
LDFLAGS="-L/usr/openssl/1.1/lib/amd64 -lcrypto -lssl -L/usr/lib/amd64 -lffi" \ 
./configure --prefix=/opt/gnu/python  --with-openssl=/usr/openssl/1.1 
--with-openssl-rpath=auto
Then I tried to install Cython and numpy and there was absolutely no problem! 

Regards,
A.S.

--Apostolos Syropoulos
Xanthi, Greece


___
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


[OpenIndiana-discuss] Python 3.10.0

2021-11-15 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I wanted to play a bit with Python's numpy module. One can install an old 
versionfor Python 2.7.X (it is available as a package). But it is not possible 
to install it withthe latest version of Python that is bundled with the OS. 
Thus I tried to compilethe latest version of Python (3.10.0) and see if I can 
succeed with numpy.I have tried with no extra options etc., but this did not 
work as Python was compiledwithout openssl support. After some experiments, I 
succeeded to build Python with thefollowing options:
CC="gcc-10 -m64" CFLAGS="-I/usr/openssl/1.1/include 
-I/usr/lib/amd64/libffi-3.2.1/include -DFFI_NO_RAW_API" \
LDFLAGS="-L/usr/openssl/1.1/lib/amd64 -lcrypto -lssl -L/usr/lib/amd64 -lffi" \ 
./configure --prefix=/opt/gnu/python  --with-openssl=/usr/openssl/1.1 
--with-openssl-rpath=auto
Then I tried to install Cython and numpy and there was absolutely no problem! 

Regards,
A.S.

--Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] USB problem

2021-11-10 Thread Apostolos Syropoulos via openindiana-discuss

  On Wednesday, November 10, 2021, 04:15:05 PM GMT+2, Stephan Althaus 
 wrote:  
 
>Hello and welcome!
Well I am old member of this list ;-)

>Yes, there is an open issue for this. For more informatione search for 
>"automount" on the oi-dev mailing list. (June, October)

Yes I participated in this discussion.
>You may want to try this hint from David Stes:
>
># svcadm restart hal
># svcadm enable rmvolmgr

This does not work on my system! 

# eject -l
/dev/dsk/c9t1d0s2    cdrom,cdrom0,cd,cd0,sr,sr0

However, as I noted in my previous message, automount works on systems thatdo 
not have USB3 ports. Yes these are vcry old systems but still there are 
somearound...
Kindest regards,A.S.

--Apostolos Syropoulos
Xanthi, Greece



 


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


[OpenIndiana-discuss] USB problem

2021-11-09 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
I have recently installed the latest version of OI on a number of systems.I 
have noticed that all systems that do not have USB3 ports can automountUSB 
memory thumb disks. This is not valid for systems that have USB3 ports.
Regards,A.S.

--Apostolos Syropoulos
Xanthi, Greece



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


Re: [OpenIndiana-discuss] a MP4 media player which works on openindiana ?

2021-10-24 Thread Apostolos Syropoulos via openindiana-discuss
On my system I have two versions of ffmpeg:
 /usr/bin/ffmpeg -version
ffmpeg version 3.2.14 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 7.5.0 (OpenIndiana 7.5.0-il-0)
configuration: --prefix=/usr --mandir=/usr/share/man --bindir=/usr/bin 
--libdir=/usr/lib/amd64 --cc=/usr/gcc/7/bin/gcc --enable-runtime-cpudetect 
--enable-mmx --enable-sse --enable-ssse3 --disable-debug --enable-nonfree 
--enable-gpl --enable-postproc --enable-avfilter --enable-swscale 
--enable-libgsm --enable-libxvid --enable-libx264 --enable-libx265 
--enable-libtheora --enable-libmp3lame --enable-libvorbis --enable-libvpx 
--enable-x11grab --enable-libspeex --enable-pthreads --enable-libass 
--enable-openssl --enable-openal --enable-avresample --enable-libschroedinger 
--enable-libopenjpeg --enable-librtmp --enable-vdpau --enable-shared 
--disable-static
libavutil  55. 34.101 / 55. 34.101
libavcodec 57. 64.101 / 57. 64.101
libavformat    57. 56.101 / 57. 56.101
libavdevice    57.  1.100 / 57.  1.100
libavfilter 6. 65.100 /  6. 65.100
libavresample   3.  1.  0 /  3.  1.  0
libswscale  4.  2.100 /  4.  2.100
libswresample   2.  3.100 /  2.  3.100
libpostproc    54.  1.100 / 54.  1.100
aposyro@adalind>> /opt/gnu/bin/ffmpeg -version
ffmpeg version 3.4.1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 6.5.0 (OpenIndiana 6.5.0-oi-2)
configuration: --enable-gpl --enable-nonfree --enable-libfdk-aac 
--enable-libx264 --enable-libmp3lame --enable-libass --prefix=/opt/gnu
libavutil  55. 78.100 / 55. 78.100
libavcodec 57.107.100 / 57.107.100
libavformat    57. 83.100 / 57. 83.100
libavdevice    57. 10.100 / 57. 10.100
libavfilter 6.107.100 /  6.107.100
libswscale  4.  8.100 /  4.  8.100
libswresample   2.  9.100 /  2.  9.100
libpostproc    54.  7.100 / 54.  7.100


I have built the second one and I think it is not difficult to do it. Also, I 
have mplayer:
mplayer -v
MPlayer 1.3.0-4.8.5 (C) 2000-2016 MPlayer Team
CPU vendor name: AuthenticAMD  max cpuid level: 13
CPU: AMD FX(tm)-6300 Six-Core Processor (Family: 21, Model: 2, Stepping: 0)
extended cpuid-level: 30
extended cache-info: 134250816
Detected cache-line size is 64 bytes
CPUflags:  MMX: 1 MMX2: 1 3DNow: 0 3DNowExt: 0 SSE: 1 SSE2: 1 SSE3: 1 SSSE3: 1 
SSE4: 1 SSE4.2: 1 AVX: 1
Compiled for x86 CPU with extensions
And obviously I can play any video file. I could make an old style package for 
mplayer if you like.
A.S.

--Apostolos Syropoulos
Xanthi, Greece


 

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


Re: [OpenIndiana-discuss] Cannot upgrade OpenIndiana Hipster 2021.04

2021-10-10 Thread Apostolos Syropoulos via openindiana-discuss

>By "not functional" do you just mean you have no X desktop (lightdm) or really 
>not functional,
>in the sense of no text logon console ?
I mean that  I can login to the console but ligtdm fails to start. But since 
you can upgrade I suspectthere is another problem involved. I will try to solve 
it tomorrow and I will report back.
Thanks for your help!A.S.

--Apostolos Syropoulos
Xanthi, Greece

 

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


[OpenIndiana-discuss] Cannot upgrade OpenIndiana Hipster 2021.04

2021-10-06 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
Last June I installed OpenIndiana Hipster 2021.04 on a computer.This machine 
did not use the NVIDIA driver. However, I installed aGeForce GT 710 video card 
and I had to uninstall the default driversince it did not work with card 
(lightdm failed to start...).  I unistalledthe nvidia driver and I tried to 
install the nvidia-340 package. This didnot work. I suppose packages have been 
updated and they wereincompatible. So I tried to upgrade the system. This 
failed also!See below. The question is: What can I do to install the 
propernvidia driver and make my system functional again?
Regards,
Apostolos Syropoulos


 Startup: Refreshing catalog 'openindiana.org' ... Done
Planning: Solver setup ... Done (17.529s)
Planning: Running solver ... Done (0.480s)
Planning: Finding local manifests ... Done (0.693s)
Planning: Package planning ... Done (72.308s)
Planning: Merging actions ... Done (4.148s)
Planning: Checking for conflicting actions ... Done (5.759s)
Planning: Consolidating action changes ... Done (33.155s)
Planning: Evaluating mediators ... Done (2.000s)
Planning: Planning completed in 138.69 seconds
    Packages to remove: 8
   Packages to install:    49
    Packages to update:   631
   Mediators to change: 5
 Estimated space available: 362.50 GB
Estimated space to be consumed:   6.35 GB
   Create boot environment:   Yes
 Activate boot environment:   Yes
Create backup boot environment:    No
  Rebuild boot archive:   Yes

Changed mediators:
  mediator ctags:
    implementation: None -> illumos (system default)

  mediator firefox:
   version: 60 (system default) -> 78 (system default)

  mediator openssl:
   version: None -> 1.0 (vendor default)
    implementation: default (vendor default) -> openssl (vendor default)

  mediator python3:
   version: 3.7 (system default) -> 3.9 (vendor default)

  mediator thunderbird:
   version: 52 (system default) -> 78 (system default)

Changed packages:
openindiana.org
  library/python/automat-27
    0.8.0-2020.0.1.2 -> None
  library/python/cheroot-27
    6.5.2-2020.0.1.3 -> None
  library/python/cherrypy-27
    17.3.0-2020.0.1.3 -> None
  library/python/libxml2-35
    2.9.9-2020.0.1.4 -> None
  library/python/pyasn1-27
    0.4.4-2020.0.1.1 -> None
  library/python/python-hamcrest-27
    1.10.1-2020.0.1.2 -> None
  library/python/python-twisted-27
    19.10.0-2020.0.1.0 -> None
  mail/thunderbird/plugin/thunderbird-lightning
    52.9.1-2020.0.1.1 -> None
  driver/graphics/nvidia-390
    None -> 0.390.144-2020.0.1.0
  image/graphviz
    None -> 2.40.1-2020.0.1.6
  image/graphviz/graphviz-java
    None -> 2.40.1-2020.0.1.6
  image/graphviz/graphviz-lua
    None -> 2.40.1-2020.0.1.6
  image/graphviz/graphviz-perl-522
    None -> 2.40.1-2020.0.1.6
  image/graphviz/graphviz-python-27
    None -> 2.40.1-2020.0.1.6
  image/graphviz/graphviz-tcl
    None -> 2.40.1-2020.0.1.6
  library/graphics/libvdpau
    None -> 1.3-2020.0.1.0
  library/libgsasl
    None -> 1.8.1-2020.0.1.0
  library/math/gts
    None -> 0.7.6-2020.0.1.0
  library/python/asn1crypto-37
    None -> 0.24.0-2020.0.1.4
  library/python/asn1crypto-39
    None -> 0.24.0-2020.0.1.4
  library/python/cffi-37
    None -> 1.14.0-2020.0.1.0
  library/python/cffi-39
    None -> 1.14.0-2020.0.1.0
  library/python/cryptography-37
    None -> 2.6.1-2020.0.1.5
  library/python/cryptography-39
    None -> 2.6.1-2020.0.1.5
  library/python/idna-37
    None -> 2.10-2020.0.1.0
  library/python/idna-39
    None -> 2.10-2020.0.1.0
  library/python/jsonrpclib-37
    None -> 0.4.0-2020.0.1.4
  library/python/jsonrpclib-39
    None -> 0.4.0-2020.0.1.4
  library/python/jsonschema-37
    None -> 2.4.0-2020.0.1.6
  library/python/jsonschema-39
    None -> 2.4.0-2020.0.1.6
  library/python/libxml2-39
    None -> 2.9.9-2020.0.1.5
  library/python/lxml-37
    None -> 4.6.1-2020.0.1.0
  library/python/lxml-39
    None -> 4.6.1-2020.0.1.0
  library/python/markdown-37
    None -> 3.1-2020.0.1.4
  library/python/markdown-39
    None -> 3.1-2020.0.1.4
  library/python/more-itertools
    None -> 8.6.0-2020.0.1.0
  library/python/more-itertools-37
    None -> 8.6.0-2020.0.1.0
  library/python/more-itertools-39
    None -> 8.6.0-2020.0.1.0
  library/python/pip-37
    None -> 20.3.3-2020.0.1.0
  library/python/pip-39
    None -> 20.3.3-2020.0.1.0
  library/python/pycparser-37
    None -> 2.14-2020.0.1.5
  library/python/pycparser-39
    None -> 2.14-2020.0.1.5
  library/python/python-zope-interface-37
    None -> 5.2.0-2020.0.1.0
  library/python/python-zope-interface-39
    None -> 5.2.0-2020.0.1.0
  library/python/pytz-37
    None -> 2020.5-2020.0.1.0
  library/python/pytz-39
    None -> 2020.5-2020.0.1.0
  library/python/setuptools-37
    None -> 50.3.2-2020.0.1.0
  library/python/setuptools-39
    None -> 50.3.2-2020.0.1.0
  library/python/simplejson-37
    None -> 3.8.2-2020.0.1.5
  

Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-07-19 Thread Apostolos Syropoulos via openindiana-discuss

Any ideas how one can install this new firefox? I tried 

# pkg install web/browser/firefox@90.0
Creating Plan (Solver setup): \
pkg install: No matching version of web/browser/firefox can be installed:
  Reject:  pkg://userland/web/browser/firefox@90.0-2020.0.1.0
  Reason:  This version is excluded by installed incorporation 
consolidation/userland/userland-incorporation@0.5.11-2020.0.1.14047

A.S.

--Apostolos Syropoulos
Xanthi, Greece
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Cannot install libreoffice

2021-06-25 Thread Apostolos Syropoulos via openindiana-discuss

Yes it was a typo. I took a picture of the screenbut I did not copied the text 
correctly.And I felt exhausted to mount a USB thumbdisk, copy the message to 
file, etc.


Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Παρ, 25 Ιουν, 2021 στις 15:32, ο χρήστηςTill 
Wegmueller έγραψε:   Nice catch!

I copied the path from Apostolos mail. That is an odd path indeed!
Considering it's in the libreoffice package, is it a typo in the mail 
from Apostolos?

-Till

On 25.06.21 03:38, Alex Smith (K4RNT) wrote:
> You mistyped libreoffice in the paths you mentioned. No worries, just
> pointing it out.
> 
> Cheers!
> 
> " 'With the first link, the chain is forged. The first speech censured, the
> first thought forbidden, the first freedom denied, chains us all
> irrevocably.' Those words were uttered by Judge Aaron Satie as wisdom and
> warning... The first time any man's freedom is trodden on, we’re all
> damaged." - Jean-Luc Picard, quoting Judge Aaron Satie, Star Trek: TNG
> episode "The Drumhead"
> - Alex Smith
> - Lacey, Washington (Olympia, WA metropolitan area)
> 
> 
> On Wed, Jun 23, 2021 at 6:41 PM Till Wegmueller 
> wrote:
> 
>> Hey Apostolos
>>
>> Looks like a package conflict. Is another libreoffice installed?
>>
>> What does "ls -l
>> /usr/lib/libfreoffice/program/resource/bo/LC_MESSAGES/svx.mo" and "pkg
>> search -rp /usr/lib/libfreoffice/program/resource/bo/LC_MESSAGES/svx.mo"
>> say on the Systems?
>>
>> -Till
>>
>> On 23.06.21 19:03, Apostolos Syropoulos via openindiana-discuss wrote:
>>> Hello,
>>> Today I tried to install libreoffice on acomputer. I installed the OS on
>> thismachine using the DVD yesterday.Command pkg fails and reports acryptic
>> message:
>>> Errors were encountered while attemptingto retrieve package or file data
>> for therequested operation
>>> pkg://openindiana.org/desktop/office/libreoffice@6.4.3.5.11Invalid
>> contentpath usr/lib/libfreoffice/program/resource/bo/LC_MESSAGES/svx.mo :
>> clash failure: expected computed...(happened 4 times).
>>> Any idea what is this? Note that yesterdayI successfully installed
>> libreoffice on adifferent system.
>>> Kind regards,
>>> Apostolos Syropoulos
>>>
>>> Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
>>> ___
>>> 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
>>
> ___
> 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
  
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


[OpenIndiana-discuss] Cannot install libreoffice

2021-06-23 Thread Apostolos Syropoulos via openindiana-discuss
Hello,
Today I tried to install libreoffice on acomputer. I installed the OS on 
thismachine using the DVD yesterday.Command pkg fails and reports acryptic 
message:
Errors were encountered while attemptingto retrieve package or file data for 
therequested operation
pkg://openindiana.org/desktop/office/libreoffice@6.4.3.5.11Invalid 
contentpath usr/lib/libfreoffice/program/resource/bo/LC_MESSAGES/svx.mo : clash 
failure: expected computed...(happened 4 times).
Any idea what is this? Note that yesterdayI successfully installed libreoffice 
on adifferent system.
Kind regards,
Apostolos Syropoulos

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] automount does not work!

2021-06-19 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

I have also noticed that 

# svccfg
svc:> select hal
svc:/system/hal> listprop hal/*
svc:/system/hal> exit

which is very strange! The man page gives the following example 

 example# svccfg
 svc:> select hal
 svc:/system/hal> listprop hal/*
 hal/verbose  boolean  false
 hal/use_syslog   boolean  false
 svc:/system/hal> setprop hal/verbose=true
 svc:/system/hal> exit

to make some changes to the way hal behaves.

A.S.

--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] automount does not work!

2021-06-19 Thread Apostolos Syropoulos via openindiana-discuss
On Friday, June 18, 2021, 9:34:08 PM GMT+3, Gary Mills  
wrote:

>That's an interesting finding.  I checked two of my systems that have
>the automount problem: Both have the nvidia-390 package.  None of my
>systems use Nvidia graphics.  I'll try removing that package from one
>of them to see what happens to USB stick mounting.  There does appear
>to be some interaction between hal (supplied by illumos) and X11
>(supplied by OI).

Well if your machine has a DVD drive you will notice that DVDs/CDs are 
automounted.
This probably means that something is wrong with the part that mounts USB thumb 
sticks.

Regards,

Apostolos
--
Apostolos Syropoulos
Xanthi, Greece

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


[OpenIndiana-discuss] automount does not work!

2021-06-18 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

Today I installed OI using the latest DVD on 4 different machines. One machine 
had an old
nvidia card and I had to create a new BE. By entering the command to uninstall 
the driver,
I noticed that pkg command installed the 340.XX driver at the end. This is just 
great!
However, I have noticed that USB thumb disks cannot be automounted. Yes I can 
manually
mount a USB thumb disk but that is all. This means something is broken in the 
distribution.
Maybe the people who package OI should take a look at this.

Kind regards,

Apostolos

--
Apostolos Syropoulos
Xanthi, Greece



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


Re: [OpenIndiana-discuss] OI Foundation

2021-05-26 Thread Apostolos Syropoulos via openindiana-discuss
>We can get this going with at least 3-4 individuals; if there is interest I
>can start putting something together.

This is definitely a great idea.
A.S.
--
Apostolos Syropoulos
Xanthi, Greece




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


Re: [OpenIndiana-discuss] xhci drivers fails to attach

2021-05-24 Thread Apostolos Syropoulos via openindiana-discuss
>Until yesterday the xhci driver was working just fine. For a stupid reason I 
>issued a
>
># rem_drv xhci
>
>This worked fine but the add_drv command fails:
>
># add_drv xhci
>devfsadm: driver failed to attach: xhci
>Warning: Driver (xhci) successfully added to system but failed to attach
>
>I tried "touch /reconfigure" but nothing happens. I haven't touched the bios 
>or anything!
>Of course automount does not work. Any ideas what is wrong?

The problem was that the system could not discover the PCI so I had to use the 
following command:

add_drv -i "pciclass,0c0330" xhci

The problem is that the system could not detect the device. So mounted an older 
BE
and I found the driver alias:

bash-5.1$ grep xhci driver_aliases
xhci "pciclass,0c0330"

I am of course no kernel expert but I suspect that something is wrong with 
device detection.

Regards,
A.S.
--
Apostolos Syropoulos
Xanthi, Greece

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


[OpenIndiana-discuss] xhci drivers fails to attach

2021-05-21 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

Until yesterday the xhci driver was working just fine. For a stupid reason I 
issued a

# rem_drv xhci

This worked fine but the add_drv command fails:

# add_drv xhci
devfsadm: driver failed to attach: xhci
Warning: Driver (xhci) successfully added to system but failed to attach

I tried "touch /reconfigure" but nothing happens. I haven't touched the bios or 
anything!
Of course automount does not work. Any ideas what is wrong?

Regards,
Apostolos
--

--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] USB Access issues

2021-04-25 Thread Apostolos Syropoulos via openindiana-discuss
You can only mount the USB using

$ rmformat -l

to detect the USB and then (as root)

# mount -F pcfs /dev/dsk/c13t1d0p1:c  /mnt

to mount it. Here /dev/rdsk/c13t1d0p1 is the output from rmformat -l.
I have reported this problem last month.

Regards,
A.S.



--
Apostolos Syropoulos
Xanthi, Greece









On Sunday, April 25, 2021, 9:14:39 PM GMT+3, russell 
 wrote: 





Good Afternoon

While usb devices are being being detected, I am unable to access the 
usb devices.

Apr 25 16:22:29 tesla usba: [ID 912658 kern.info] USB 2.0 device 
(usb781,5567) operating at hi speed (USB 2.x) on USB 2.0 external hub: 
storage@3, scsa2usb1 at bus address 7
Apr 25 16:22:29 tesla usba: [ID 349649 kern.info] SanDisk Cruzer Blade 
4C53140730116282
Apr 25 16:22:29 tesla genunix: [ID 936769 kern.info] scsa2usb1 is 
/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage@3
Apr 25 16:22:29 tesla genunix: [ID 408114 kern.info] 
/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage@3 (scsa2usb1) online
Apr 25 16:22:29 tesla scsi: [ID 583861 kern.info] sd11 at scsa2usb1: 
target 0 lun 0
Apr 25 16:22:29 tesla genunix: [ID 936769 kern.info] sd11 is 
/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage@3/disk@0,0
Apr 25 16:22:29 tesla genunix: [ID 408114 kern.info] 
/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage@3/disk@0,0 (sd11) 
online

Also when I try and access them from VirtualBox, the devices are recognised

Apr 25 16:41:11 tesla vboxusbmon: [ID 695880 kern.notice] Capturing USB 
Flash Disk 
0x90c:0x1000:/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage 
Bus=7 Port=3

However when I attempt to mount the USB drives the VM reports the following

00:00:44.560463 USBLibR3:Function (c0185685) failed. rc=VERR_NOT_FOUND
00:00:44.560492 USBLibR3:USBLibGetClientInfo VBOXUSBMON_IOCTL_CLIENTPATH 
failed! rc=VERR_NOT_FOUND
00:00:44.560509 USBProxy: Failed to get client info. rc=VERR_NOT_FOUND 
szDeviceIdent=0x90c:0x1000:4352:/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage
00:00:44.560524 usbProxyConstruct: Failed to open 
'0x90c:0x1000:4352:/pci@0,0/pci1022,1483@1,2/pci1b21,1142@0/hub@6/storage', 
rc=VERR_OPEN_FAILED
00:00:44.560546 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) 
aIID={872da645-4a9b-1727-bee2-5585105b9eed} aComponent={ConsoleWrap} 
aText={Failed to create a proxy device for the USB device. (Error: 
VERR_OPEN_FAILED)}, preserve=false aResultDetail=-101

Checked the users are listed in correct vbox groups in /etc/group

TIA

Russelll


___
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] How to mount usb devices?

2021-03-29 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, March 29, 2021, 12:10:20 PM GMT+3, Stephan Althaus 
 wrote:

>I tested this on a relatively new OI system where the user *should* be
>standard, and i get the same:
>
>a) The USB device gets connected ('hotplug') and is accessible via
>rmformat & friends
>b) The vfat partition on the USB stick is not mounted automatically
>c) only the root-role is allowed to mount the partition
>
>So the automount feature needs some additional magic to work, it does
>not work rightoutofthebox.

I updated my system on 2021:03:18 and I reported this problem to this
list. I can mount a USB thumb disk using mount -F pcfs but the automagic
thing is lost. However, when I insert a DVD into the DVD driver the automount
thing works. 

A.S.
--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-28 Thread Apostolos Syropoulos via openindiana-discuss
Is this 

https://github.com/brailcom/speechd

the source code of libspeechd?

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Firefox and Thunderbird

2021-03-25 Thread Apostolos Syropoulos via openindiana-discuss
The site says that version has firefox version 68.12.0 dated
March 16, 2021 11:42:47 AM Obviously something is wrong
A.S.
--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] OpenIndiana-discuss] Mate does not start

2021-03-23 Thread Apostolos Syropoulos via openindiana-discuss
On Tuesday, March 23, 2021, 6:52:26 PM GMT+2, John D Groenveld 
 wrote:

>How do the logs differ between your corrupted environment and
>your working test user?

Well I need to check things thoroughly and I do not have the time to
do this. So I decided to move my files to the new account and live
the old account there. 

>At that point a Mate expect can chime-in on whether its feasible
>to repair your environment.

That would be really ineteresting.

A.S.


--
Apostolos Syropoulos
Xanthi, Greece







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


Re: [OpenIndiana-discuss] OpenIndiana-discuss] Mate does not start

2021-03-23 Thread Apostolos Syropoulos via openindiana-discuss
Adding a user works!

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  
 
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] OpenIndiana-discuss] Mate does not start

2021-03-23 Thread Apostolos Syropoulos via openindiana-discuss
In addition I got the message
Software acceleration check failed 
because/usr/lib/amd64/mate/mate-session-check-accelerated does not exist

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Τρί, 23 Μαρ, 2021 στις 16:50, ο χρήστηςApostolos Syropoulos via 
openindiana-discuss έγραψε:   Today for 
some reason my systemstopped functioning. I rebooted thesystem manually by 
pressing therestart button. It rebooted but itnever started mate. The 
loginscreen was there, I could logginbut that was all. Used the 
virtualterminals and I managed to see amessage that .config/dconf/userwas 
non-writable.  I deleted the filebut this did not help. I deleted thewhole 
.config folder but this did nothelp. I scrubbed the disk and noerrors were 
found. Now I enter myusername & password, the systemaccepts it but it returns 
again to thelogin screen! Any ideas what mightbe wrong?
Regards,
Apostolos 

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
___
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


[OpenIndiana-discuss] Mate does not start

2021-03-23 Thread Apostolos Syropoulos via openindiana-discuss
Today for some reason my systemstopped functioning. I rebooted thesystem 
manually by pressing therestart button. It rebooted but itnever started mate. 
The loginscreen was there, I could logginbut that was all. Used the 
virtualterminals and I managed to see amessage that .config/dconf/userwas 
non-writable.  I deleted the filebut this did not help. I deleted thewhole 
.config folder but this did nothelp. I scrubbed the disk and noerrors were 
found. Now I enter myusername & password, the systemaccepts it but it returns 
again to thelogin screen! Any ideas what mightbe wrong?
Regards,
Apostolos 

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-22 Thread Apostolos Syropoulos via openindiana-discuss
apostolo@adalind>> pstack core  | /usr/gnu/bin/c++filt | head -100
core 'core' of 3499:    /usr/bin/firefox
- thread# 1 / lwp# 1 -
 7fffa0f9dd48 js::gc::Chunk::fetchNextDecommittedArena() () + 56
 7fffa0f9ea75 js::gc::Chunk::allocateArena(js::gc::GCRuntime*, JS::Zone*, 
js::gc::AllocKind, js::AutoLockGC const&) () + 33
 7fffa0fa6e41 js::gc::GCRuntime::allocateArena(js::gc::Chunk*, JS::Zone*, 
js::gc::AllocKind, js::gc::ShouldCheckThresholds, js::AutoLockGC const&) () + 39
 7fffa0fa9c28 
js::gc::ArenaLists::refillFreeListAndAllocate(js::gc::FreeLists&, 
js::gc::AllocKind, js::gc::ShouldCheckThresholds) () + 176
 7fffa0fa9dc6 js::gc::GCRuntime::refillFreeListFromMainThread(JSContext*, 
js::gc::AllocKind) () + 28
 7fffa0fa9e04 js::gc::GCRuntime::refillFreeListFromAnyThread(JSContext*, 
js::gc::AllocKind) () + 12
 7fffa0fc38f1 JSObject* 
js::gc::GCRuntime::tryNewTenuredObject<(js::AllowGC)1>(JSContext*, 
js::gc::AllocKind, unsigned long, unsigned long) () + f3
 7fffa0fc3df4 JSObject* js::AllocateObject<(js::AllowGC)1>(JSContext*, 
js::gc::AllocKind, unsigned long, js::gc::InitialHeap, JSClass const*) () + b2
 7fffa0cd22dc NewObject(JSContext*, JS::Handle, 
js::gc::AllocKind, js::NewObjectKind, unsigned int) () + 787
 7fffa0cd3e38 js::NewObjectWithGivenTaggedProto(JSContext*, JSClass const*, 
JS::Handle, js::gc::AllocKind, js::NewObjectKind, unsigned 
int) () + 11f
 7fffa0bbf3f8 JS_NewObjectWithGivenProto(JSContext*, JSClass const*, 
JS::Handle) () + 58
 7fff9ecb3687 mozilla::dom::URL_Binding::Wrap(JSContext*, 
mozilla::dom::URL*, nsWrapperCache*, JS::Handle, 
JS::MutableHandle) () + 321
 7fff9f9f7e72 mozilla::dom::URL::WrapObject(JSContext*, 
JS::Handle) () + 54
 7fff9ecb3d17 mozilla::dom::URL_Binding::_constructor(JSContext*, unsigned 
int, JS::Value*) () + 4c0
 268a26d002c8  ()
 071677f8  ()
 268a26cfbc03  ()
 053fc3b8  ()
 268a26dec66e  ()
 084750d8  ()
 268a26d319df  ()
 268a26ca267f  ()
 7fffa118ea33 EnterJit(JSContext*, js::RunState&, unsigned char*) () + 28c
 7fffa118ecd1 js::jit::MaybeEnterJit(JSContext*, js::RunState&) () + ae
 7fffa0b54bef js::RunScript(JSContext*, js::RunState&) () + 96
 7fffa0b55060 js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, 
js::MaybeConstruct, js::CallReason) () + 26c
 7fffa0b55590 InternalCall(JSContext*, js::AnyInvokeArgs const&, 
js::CallReason) () + 7c
 7fffa0b555ff js::Call(JSContext*, JS::Handle, 
JS::Handle, js::AnyInvokeArgs const&, JS::MutableHandle, 
js::CallReason) () + 2c
 7fffa0d5cc63 js::CallSelfHostedFunction(JSContext*, 
JS::Handle, JS::Handle, js::AnyInvokeArgs const&, 
JS::MutableHandle) () + d6
 7fffa0c10860 AsyncFunctionResume(JSContext*, 
JS::Handle, ResumeKind, 
JS::Handle) () + 23c
 7fffa0c10a11 js::AsyncFunctionAwaitedFulfilled(JSContext*, 
JS::Handle, JS::Handle) () + 11
 7fffa0c8d96b PromiseReactionJob(JSContext*, unsigned int, JS::Value*) () + 
64b
 7fffa0b5548e js::InternalCallOrConstruct(JSContext*, JS::CallArgs const&, 
js::MaybeConstruct, js::CallReason) () + 69a
 7fffa0b55590 InternalCall(JSContext*, js::AnyInvokeArgs const&, 
js::CallReason) () + 7c
 7fffa0b555ff js::Call(JSContext*, JS::Handle, 
JS::Handle, js::AnyInvokeArgs const&, JS::MutableHandle, 
js::CallReason) () + 2c
 7fffa0bd98ca JS::Call(JSContext*, JS::Handle, 
JS::Handle, JS::HandleValueArray const&, 
JS::MutableHandle) () + 229
 7fff9eb1d2e0 
mozilla::dom::PromiseJobCallback::Call(mozilla::dom::BindingCallContext&, 
JS::Handle, mozilla::ErrorResult&) () + b4
 7fff9d778a7f mozilla::dom::PromiseJobCallback::Call(mozilla::ErrorResult&, 
char const*, mozilla::dom::CallbackObject::ExceptionHandling, JS::Realm*) () + 
73
 7fff9d778c5d mozilla::PromiseJobRunnable::Run(mozilla::AutoSlowOperation&) 
() + 1b3
 7fff9d789922 
mozilla::CycleCollectedJSContext::PerformMicroTaskCheckPoint(bool) () + 1e6
 7fff9d789cda mozilla::CycleCollectedJSContext::AfterProcessTask(unsigned 
int) () + 16
 7fff9e138859 XPCJSContext::AfterProcessTask(unsigned int) () + 33
 7fff9d8104b1 nsThread::ProcessNextEvent(bool, bool*) () + 6e7
 7fff9d80ec55 NS_ProcessNextEvent(nsIThread*, bool) () + 2d
 7fff9dd5c4c5 mozilla::ipc::MessagePump::Run(base::MessagePump::Delegate*) 
() + a9
 7fff9dd25b05 MessageLoop::RunInternal() () + 13
 7fff9dd25d4d MessageLoop::Run() () + 37
 7fff9fc11672 nsBaseAppShell::Run() () + 2e
 7fffa09dfdde nsAppStartup::Run() () + 4a
 7fffa0aa272c XREMain::XRE_mainRun() () + a2c
 7fffa0aa333f XREMain::XRE_main(int, char**, mozilla::BootstrapConfig 
const&) () + 7e7
 7fffa0aa34f6 XRE_main(int, char**, mozilla::BootstrapConfig const&) () + f1
 7fffa0aa48ad mozilla::BootstrapImpl::XRE_main(int, char**, 
mozilla::BootstrapConfig const&) () + 11
 00411cb0 

Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-22 Thread Apostolos Syropoulos via openindiana-discuss


Of course I am using 78.8.0esr (64-bit)

--
Apostolos Syropoulos
Xanthi, Greece




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


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-22 Thread Apostolos Syropoulos via openindiana-discuss
This site 

https://belnumizmatika.by/

crashes firefox. Firefox on smart phone has
no problem with this site.


-
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-18 Thread Apostolos Syropoulos via openindiana-discuss
On Thursday, March 18, 2021, 9:56:14 PM GMT+2, Stephan Althaus 
 wrote:

>So your panic after "pkg update" is solved ? Which nvidia driver are you
>using now?

Not really. The rmformat problem happened to the computer at home.
There I am using 415.18. Since my teaching class is closed now
due to anew lockdown, I will be able to make some more tests next week.

>i don't know where your USB problem may come from, but my rmformat
>binary has the same size
>
>$ ls -l `which rmformat`
>-r-sr-xr-x   1 root bin    68428 Mar 16 22:27 /usr/bin/rmformat

Yes but the same command BE from last October had a different size (64296)

>It it more likely a permission problem. Did you change your user
>(-groups) recently

No I never touch such things. 

A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-18 Thread Apostolos Syropoulos via openindiana-discuss
OK I said let's upgrade and keep fingewrs crossed.
The system booted, mate started just fine but the USB ports
are not functioning!


apostolo@adalind>> /usr/sbin/cfgadm
Ap_Id  Type Receptacle   Occupant Condition
sata2/0::dsk/c9t0d0    disk connected    configured   ok
sata2/1::dsk/c9t1d0    cd/dvd   connected    configured   ok
sata2/2::dsk/c9t2d0    disk connected    configured   ok
sata2/3    sata-port    empty    unconfigured ok
sata2/4    sata-port    empty    unconfigured ok
sata2/5    sata-port    empty    unconfigured ok
usb8/1 unknown  empty    unconfigured ok
usb8/2 usb-mouse    connected    configured   ok
usb8/3 unknown  empty    unconfigured ok
usb8/4 unknown  empty    unconfigured ok
usb8/5 unknown  empty    unconfigured ok
usb9/1 unknown  empty    unconfigured ok
usb9/2 unknown  empty    unconfigured ok
usb9/3 unknown  empty    unconfigured ok
usb9/4 unknown  empty    unconfigured ok
usb9/5 unknown  empty    unconfigured ok
usb10/1    unknown  empty    unconfigured ok
usb10/2    unknown  empty    unconfigured ok
usb10/3    unknown  empty    unconfigured ok
usb10/4    unknown  empty    unconfigured ok
usb10/5    unknown  empty    unconfigured ok
usb11/1    unknown  empty    unconfigured ok
usb11/2    unknown  empty    unconfigured ok
usb11/3    usb-storage  connected    configured   ok
usb11/4    unknown  empty    unconfigured ok
usb11/5    unknown  empty    unconfigured ok
usb12/1    unknown  empty    unconfigured ok
usb12/2    unknown  empty    unconfigured ok
usb13/1    unknown  empty    unconfigured ok
usb13/2    unknown  empty    unconfigured ok
usb13/3    unknown  empty    unconfigured ok
usb13/4    unknown  empty    unconfigured ok
usb14/1    unknown  empty    unconfigured ok
usb14/2    unknown  empty    unconfigured ok
usb14/3    unknown  empty    unconfigured ok
usb14/4    unknown  empty    unconfigured ok
usb15/1    unknown  empty    unconfigured ok
usb15/2    unknown  empty    unconfigured ok
usb15/3    unknown  empty    unconfigured ok
usb15/4    unknown  empty    unconfigured ok
usb16/1    usb-hub  connected    configured   ok
usb16/1.1  unknown  empty    unconfigured ok
usb16/1.2  usb-device   connected    configured   ok
usb16/1.3  unknown  empty    unconfigured ok
usb16/1.4  unknown  empty    unconfigured ok
usb16/2    unknown  empty    unconfigured ok

But when I run rmformat I see nothing! Running as root I see

root@adalind>> rmformat
Looking for devices...
 1. Logical Node: /dev/rdsk/c12t0d0p0
    Physical Node: /pci@0,0/pci1458,5004@13,2/storage@3/disk@0,0
    Connected Device: Generic  Flash Disk   8.07
    Device Type: Removable
    Bus: USB
    Size: 7,7 GB
    Label: 
    Access permissions: Medium is not write protected.
 2. Logical Node: /dev/rdsk/c13t0d0p0
    Physical Node: 
/pci@0,0/pci1002,43a1@15,1/pci1458,5007@0/storage@4/disk@0,0
    Connected Device:  USB  SanDisk 3.2Gen1 1.00
    Device Type: Removable
    Bus: USB
    Size: 117,4 GB
    Label: 
    Access permissions: Medium is not write protected.
 3. Logical Node: /dev/rdsk/c9t1d0p0
    Physical Node: /pci@0,0/pci1458,b002@11/cdrom@1,0
    Connected Device: HL-DT-ST DVDRAM GH24NSD1  LG00
    Device Type: DVD Reader/Writer
    Bus: 
    Size: 
    Label: 
    Access permissions: 
root@adalind>> mount -F pcfs /dev/dsk/c12t0d0p0:c /mnt

And this works. Also, I see

root@adalind>> ls -l rmformat
-r-sr-xr-x   1 root bin    68428 Μαρ 18 18:20 rmformat

which I am not really sure if it is correct.

Any ideas?

A.S.
--
Apostolos Syropoulos
Xanthi, Greece


___

Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - Nvidia versions

2021-03-17 Thread Apostolos Syropoulos via openindiana-discuss
And here is the output from the fmdump command:


TIME   UUID SUNW-MSG-ID
Μαρ 08 2021 09:31:41.982815000 fea0efbd-8079-c363-9d1d-a74d6124b14a 
SUNOS-8000-KL

  TIME CLASS ENA
  Μαρ 08 09:31:26.3304 ireport.os.sunos.panic.dump_pending_on_device 
0x

nvlist version: 0
    version = 0x0
    class = list.suspect
    uuid = fea0efbd-8079-c363-9d1d-a74d6124b14a
    code = SUNOS-8000-KL
    diag-time = 1615188701 457254
    de = fmd:///module/software-diagnosis
    fault-list-sz = 0x1
    fault-list = (array of embedded nvlists)
    (start fault-list[0])
    nvlist version: 0
        version = 0x0
        class = defect.sunos.kernel.panic
        certainty = 0x64
        asru = 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
        resource = 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
        savecore-succcess = 0
        os-instance-uuid = fea0efbd-8079-c363-9d1d-a74d6124b14a
        panicstr = hat_devload: loading a mapping to free page fe207920
        panicstack = unix:hat_devload+1ba () | 
gfx_private:gfxp_map_kernel_space+b5 () | nvidia:_nv028850rm+57 () |
        crashtime = 1615188620
        panic-time =  8 Μαρτίου 2021 - 09:30:20 π.μ. EET EET
    (end fault-list[0])

    fault-status = 0x1
    severity = Major
    __ttl = 0x1
    __tod = 0x6045d2dd 0x3a949118


Best regards,
A.S.

--
Apostolos Syropoulos
Xanthi, Greece


On Sunday, March 14, 2021, 11:00:06 AM GMT+2, Apostolos Syropoulos via 
openindiana-discuss  wrote: 





As was suggested by a frequent poster of this list,
I saved the core dump and "viewed" with fmadm faulty.
Here is what I see:

---   -- -
TIME    EVENT-ID  MSG-ID SEVERITY
---   -- -
Μαρ 08 09:31:41 fea0efbd-8079-c363-9d1d-a74d6124b14a  SUNOS-8000-KL  Major     

Host    : victoria
Platform    : AB350M-HD3    Chassis_id  : Default-string
Product_sn  :

Fault class : defect.sunos.kernel.panic
Affects : 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
  faulted but still in service
Problem in  : 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
  faulted but still in service

Description : The system has rebooted after a kernel panic.  Refer to
  http://illumos.org/msg/SUNOS-8000-KL for more information.

Response    : The failed system image was dumped to the dump device.  If
  savecore is enabled (see dumpadm(1M)) a copy of the dump will be
  written to the savecore directory .

Impact  : There may be some performance impact while the panic is copied to
  the savecore directory.  Disk space usage by panics can be
  substantial.

Action  : If savecore is not enabled then please take steps to preserve the
  crash image.
  Use 'fmdump -Vp -u fea0efbd-8079-c363-9d1d-a74d6124b14a' to view
  more panic detail.  Please refer to the knowledge article for
  additional information.


Is this helpful in any way?
A.S.



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


Re: [OpenIndiana-discuss] Firefox68esr for testing

2021-03-17 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

I tried to install the new version of Firefox but my system refused 
to install it! First the command

# pkg set-publisher http://pkg.toc.de/userland userland

did not work but the command 

# pkg set-publisher -P -g http://pkg.toc.de/userland userland

worked. Then I tried to proceed. The third command failed as follows:

# pkg install firefox@78.8.0 firefox-bookmarks@78.8.0
Startup: Refreshing catalog 'userland' ... Done
 Startup: Refreshing catalog 'openindiana.org' ... Done
Planning: Solver setup ...
pkg install: No matching version of web/data/firefox-bookmarks can be installed:
  Reject:  
pkg://userland/web/data/firefox-bookmarks@78.8.0-2020.0.1.0:20210317T113101Z
  Reason:  No version matching 'require' dependency 
web/browser/firefox@78.8.0-2020.0.1.0 can be installed
    
    Reject:  
pkg://userland/web/browser/firefox@78.8.0-2020.0.1.0:20210317T113102Z
    Reason:  No version matching 'require' dependency 
library/c++/harfbuzz@2.7.4-2020.0.1.1 can be installed
  
  Reject:  
pkg://openindiana.org/library/c++/harfbuzz@2.7.4-2020.0.1.1:20210101T172313Z
  Reason:  No version matching 'require' dependency 
library/glib2@2.66.4-2020.0.1.0 can be installed
    
    Reject:  
pkg://openindiana.org/library/glib2@2.66.4-2020.0.1.0:20201220T185824Z
    Reason:  No version matching 'require' dependency 
runtime/python-35@3.5.10-2020.0.1.0 can be installed
  
  Reject:  
pkg://openindiana.org/runtime/python-35@3.5.10-2020.0.1.0:20201014T142618Z
  Reason:  This version is excluded by installed incorporation 
consolidation/userland/userland-incorporation@0.5.11-2020.0.1.13476
  
    Reject:  
pkg://openindiana.org/library/glib2@2.66.7-2020.0.1.0:20210220T114836Z
    Reason:  No version matching 'require' dependency 
SUNWcs@0.5.11-2020.0.1.20301 can be installed
  
  Reject:  
pkg://openindiana.org/SUNWcs@0.5.11-2020.0.1.20301:20210214T015332Z
  Reason:  No version matching 'require' dependency 
install/beadm@0.5.11-2020.0.1.20301 can be installed
    
    Reject:  
pkg://openindiana.org/install/beadm@0.5.11-2020.0.1.20301:20210214T013748Z
    Reason:  No version matching 'require' dependency 
system/ficl@4.1.0-2020.0.1.20301 can be installed
  
  Reject:  
pkg://openindiana.org/system/ficl@4.1.0-2020.0.1.20301:20210214T015547Z
  Reason:  No version matching 'require' dependency 
SUNWcs@0.5.11-2020.0.1.20301 can be installed
  Reason:  This version is excluded by installed incorporation 
consolidation/osnet/osnet-incorporation@0.5.11-2020.0.1.20074
  Reject:  
pkg://openindiana.org/system/ficl@4.1.0-2020.0.1.20302:20210215T015558Z
  Reason:  No version matching 'require' dependency 
library/libtecla@1.6.0-2020.0.1.20302 can be installed
    
    Reject:  
pkg://openindiana.org/library/libtecla@1.6.0-2020.0.1.20302:20210215T013816Z
    Reason:  No version matching 'require' dependency 
system/library@0.5.11-2020.0.1.20302 can be installed

It seems that I need to first update the system and then to
install firefox. If this is the case, then I will pass. We need
to solve the problem withe nvidia drivers first...

A.S.


--
Apostolos Syropoulos
Xanthi, Greece







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


Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - Nvidia versions

2021-03-13 Thread Apostolos Syropoulos via openindiana-discuss
As was suggested by a frequent poster of this list,
I saved the core dump and "viewed" with fmadm faulty.
Here is what I see:

---   -- -
TIME    EVENT-ID  MSG-ID SEVERITY
---   -- -
Μαρ 08 09:31:41 fea0efbd-8079-c363-9d1d-a74d6124b14a  SUNOS-8000-KL  Major     

Host    : victoria
Platform    : AB350M-HD3    Chassis_id  : Default-string
Product_sn  :

Fault class : defect.sunos.kernel.panic
Affects : 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
  faulted but still in service
Problem in  : 
sw:///:path=/var/crash/victoria/.fea0efbd-8079-c363-9d1d-a74d6124b14a
  faulted but still in service

Description : The system has rebooted after a kernel panic.  Refer to
  http://illumos.org/msg/SUNOS-8000-KL for more information.

Response    : The failed system image was dumped to the dump device.  If
  savecore is enabled (see dumpadm(1M)) a copy of the dump will be
  written to the savecore directory .

Impact  : There may be some performance impact while the panic is copied to
  the savecore directory.  Disk space usage by panics can be
  substantial.

Action  : If savecore is not enabled then please take steps to preserve the
  crash image.
  Use 'fmdump -Vp -u fea0efbd-8079-c363-9d1d-a74d6124b14a' to view
  more panic detail.  Please refer to the knowledge article for
  additional information.


Is this helpful in any way?
A.S.
--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - Nvidia versions

2021-03-09 Thread Apostolos Syropoulos via openindiana-discuss
As was suggested by someone on this list, I
unistalled the unsupported version of the driver 
and I installed a supported one. Nevertheless, the
system refuses to start Xorg and panics. And I would
like to ask again: Has anyone any suggestion that
would allow me to solve this really strange problem?

A.S.

--
Apostolos Syropoulos
Xanthi, Greece









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


Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - /var/log/Xorg0.log

2021-03-08 Thread Apostolos Syropoulos via openindiana-discuss
First of all I have to make a few things clear. The
machine that reboots is located at a computer lab
that I am using to teach Python programming to kids.
I booted to single user mode and disabled lightdm
and now the system boots just fine. When I enter
starx or Xorg, the screen gets black and after a few
seconds it crashes and reboots. As I have already
mentioned I am not using the "default" driver:

[   805.129]
X.Org X Server 1.19.7
Release Date: 2019-03-02
[   805.912] X Protocol Version 11, Revision 0
[   806.214] Build Operating System: SunOS 5.11 i86pc
[   806.570] Current Operating System: SunOS victoria 5.11 illumos-06524cf4e4 
i86pc
[   806.872] Build Date: 24 September 2020  02:36:42PM
[   807.135] Solaris ABI: 64-bit
[   807.422] Current version of pixman: 0.38.0
[   808.090]     Before reporting problems, check http://openindiana.org
    to make sure that you have the latest version.
[   808.108] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   809.497] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar  8 10:25:32 
2021
[   809.859] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   809.877] (==) No Layout section.  Using the first Screen section.
[   809.877] (==) No screen section available. Using defaults.
[   809.877] (**) |-->Screen "Default Screen Section" (0)
[   809.877] (**) |   |-->Monitor ""
[   809.878] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[   809.878] (==) Automatically adding devices
[   809.878] (==) Automatically enabling devices
[   809.878] (==) Not automatically adding GPU devices
[   809.892] (==) Max clients allowed: 256, resource mask: 0x1f
[   809.892] (==) FontPath set to:
    catalogue:/etc/X11/fontpath.d
[   809.892] (==) ModulePath set to 
"/usr/lib/xorg/modules/amd64,/usr/X11/lib/modules/"
[   809.892] (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AutoAddDevices.
[   809.892] (II) Loader magic: 6f9020
[   809.893] (II) Module ABI versions:
[   809.893]     X.Org ANSI C Emulation: 0.4
[   809.893]     X.Org Video Driver: 23.0
[   809.893]     X.Org XInput driver : 24.1
[   809.893]     X.Org Server Extension : 10.0
[   809.899] (--) PCI:*(0:6:0:0) 10de:128b:10de:128b rev 161, Mem @ 
0xfc00/16777216, 0xe800/134217728, 0xf000/33554432, I/O @ 
0xe000/128
[   809.899] (II) LoadModule: "glx"
[   809.964] (II) Loading /usr/lib/xorg/modules/extensions/amd64/libglx.so
[   810.356] (II) Module glx: vendor="NVIDIA Corporation"
[   810.356]     compiled for 4.0.2, module version = 1.0.0
[   810.356]     Module class: X.Org Server Extension
[   810.356] (II) NVIDIA GLX Module  396.54  Tue Aug 14 19:24:45 PDT 2018
[   810.495] (==) Matched nvidia as autoconfigured driver 0
[   810.495] (==) Matched vesa as autoconfigured driver 1
[   810.495] (==) Assigned the driver to the xf86ConfigLayout
[   810.495] (II) LoadModule: "nvidia"
[   810.510] (II) Loading /usr/X11/lib/modules/drivers/amd64/nvidia_drv.so
[   810.577] (II) Module nvidia: vendor="NVIDIA Corporation"
[   810.577]     compiled for 4.0.2, module version = 1.0.0
[   810.577]     Module class: X.Org Video Driver
[   810.585] (II) LoadModule: "vesa"
[   810.586] (II) Loading /usr/lib/xorg/modules/drivers/amd64/vesa_drv.so
[   810.643] (II) Module vesa: vendor="X.Org Foundation"
[   810.643]     compiled for 1.19.5, module version = 2.4.0
[   810.643]     Module class: X.Org Video Driver
[   810.644]     ABI class: X.Org Video Driver, version 23.0
[   810.645] (II) NVIDIA dlloader X Driver  396.54  Tue Aug 14 19:03:53 PDT 2018
[   810.645] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   810.645] (II) VESA: driver for VESA chipsets: vesa
[   810.646] (--) using VT number 2

I would really appreciate it if someone could
let me know what should I do in order to solve
this problem. BTW, the machine with the GT1030
NVIDIA card is the one that I am using at home.
So we are talking about two different systems.

Regards,
A.S.

--
Apostolos Syropoulos
Xanthi, Greece






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


Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - /var/log/Xorg0.log

2021-03-07 Thread Apostolos Syropoulos via openindiana-discuss
On Sunday, March 7, 2021, 8:58:54 PM GMT+2, Andreas Wacknitz 
 wrote:

>No, that's definitely the wrong conclusion, because
>- he is the only one seeing this problem at the moment
>- and it is most likely a selfmade problem because he installed a
>graphics card driver that is not officially distributed by OI

No I have seen exactly the same problem on a freshly installed system.
For some reason, I cannot install the system from the GUI media so I
installed the system using the text installation media. Then I created
a new BE and installed a newer version of the NVIDIA driver (the one that
comes with the media does not work). Then I installed the package install_mate 
and then I tried to boot this new BE. But each time I try to boot the system, 
it reboots after trying to start mate-session/lightdm. So practically I have 
an unusable system. 

>How can we prevent from these kind of problems in the future?
>He has installed a driver that is provided by NVIDIA for Solaris. It was
>necessary because our official driver (from the same NVIDIA source)
>is old and not suitable for modern NVIDIA graphics cards. Alas we don't
>have a newer one. And that is mostly because we have too few
>people involved in testing and maintaining packages. The majority
>prefers to fiddle themselves or wait that somebody else will do what
>they need.

I understand that this a complex problem. Mainly because the driver works
just fine on older machines. However in my case the problem was the following:

[  1231.908] (EE) NVIDIA(0): Failed to initialize the GLX module; please check 
in your X
[  1231.908] (EE) NVIDIA(0): log file that the GLX module has been loaded 
in your X
[  1231.908] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX 
module.  If
[  1231.908] (EE) NVIDIA(0): you continue to encounter problems, Please try
[  1231.908] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
[  1231.908] (EE) NVIDIA(GPU-0): Failed to initialize the NVIDIA graphics 
device!

Perhaps something went wrong with the packaging of files. Can you check that
indeed everything is OK?


>We have at least one PR with a newer driver that nobody seem to care to
>test. It is derived from older PR's that have been discussed and
>stalled for quite some time. So, the provided alternative driver is also
>already outdated. But that could be the base for more NVIDIA drivers
>in the future if it will be tested and merged. But if nobody cares
>enough to do that (or even work on a more sophisticated one) then the
>situation won't change.

Look I as using a GeForce GT 1030 and I am using NVIDIA Driver Version 415.18
with no problem. In general, I think you could "upgrade" to the 390 series.
I can try to upgrade the driver in one of my old systems and see if the
driver works.

Regards,
A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - /var/log/Xorg0.log

2021-03-07 Thread Apostolos Syropoulos via openindiana-discuss
>I tried twice with the kernal debugger and the system just froze instead
>of rebooting, so after 10 minutes I had to power cycle my computer.

This means that something is seriously wrong and people should avoid
upgrading right now.
A/S/

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] nvidia problem

2021-03-05 Thread Apostolos Syropoulos via openindiana-discuss
Finally I added a more recent version of the
driver to the system but now the system fails 
to start because it dumps core. Probably this
is related to the problem reported in this list
yesterday. So I have to wait and see when a 
functional lightdm will be available.

A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] nvidia problem

2021-03-04 Thread Apostolos Syropoulos via openindiana-discuss
On Thursday, March 4, 2021, 10:40:56 AM GMT+2, Stephan Althaus 
 wrote: 


>> Hi Apostolos,
>>
>> You might need to replace OI nvidia driver with one from their site 
>> [1], [2]
>>

OK but as I have wrote in my original message I
need to remove the xorg-something package but this
package is a prerequisite for the install_mate 
package! SO i have to delete mate and then xorg
to insatll the new nvidia driver but then I will
not be able to install mate!!! This is a real problem!

A.S.

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


[OpenIndiana-discuss] nvidia problem

2021-03-04 Thread Apostolos Syropoulos via openindiana-discuss

Hello,

I have a system and prtconf -d prints the following:

System Configuration:  Gigabyte Technology Co., Ltd.  i86pc
Memory size: 4078 Megabytes
System Peripherals (Software Nodes):

i86pc
    scsi_vhci, instance #0
    pci, instance #0
    pci1022,9600 (pciex1022,9600) [Advanced Micro Devices, Inc. [AMD] RS780 
Host Bridge] (driver not attached)
    pci1022,9603 (pciex1022,9603) [Advanced Micro Devices, Inc. [AMD] RS780 
PCI to PCI bridge (ext gfx port 0)], instance #2
    display (pciex10de,1287) [NVIDIA Corporation GK208B [GeForce GT 
730]], instance #0
    pci1569,1287 (pciex10de,e0f) [NVIDIA Corporation GK208 HDMI/DP 
Audio Controller], instance #2
    pci1022,9604 (pciex1022,9604) [Advanced Micro Devices, Inc. [AMD] 
RS780/RS880 PCI to PCI bridge (PCIE port 0)], instance #0
    pci1458,5007 (pciex1106,3483) [VIA Technologies, Inc. VL805 USB 3.0 
Host Controller], instance #0
    hub, instance #0
    mouse, instance #7
    pci1022,9606 (pciex1022,9606) [Advanced Micro Devices, Inc. [AMD] RS780 
PCI to PCI bridge (PCIE port 2)], instance #1
    pci1458,e000 (pciex10ec,8168) [Realtek Semiconductor Co., Ltd. 
RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller], instance #0
    pci1458,b002 (pciex1002,4391) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 SATA Controller [AHCI mode]], instance #0
    disk, instance #1
    cdrom, instance #0
    pci1458,5004 (pciex1002,4397) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 USB OHCI0 Controller], instance #0
    device, instance #1
    keyboard, instance #4
    mouse, instance #5
    pci1458,5004 (pciex1002,4398) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0 USB OHCI1 Controller], instance #1
    pci1458,5004 (pciex1002,4396) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 USB EHCI Controller], instance #0
    pci1458,5004 (pciex1002,4397) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 USB OHCI0 Controller], instance #2
    pci1458,5004 (pciex1002,4398) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0 USB OHCI1 Controller], instance #3
    pci1458,5004 (pciex1002,4396) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 USB EHCI Controller], instance #1
    storage, instance #3
    disk, instance #5
    pci1458,4385 (pciex1002,4385) [Advanced Micro Devices, Inc. [AMD/ATI] 
SBx00 SMBus Controller] (driver not attached)
    pci-ide (pciex1002,439c) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 IDE Controller], instance #0
    ide, instance #0
    cmdk, instance #0
    ide (driver not attached)
    pci1458,a182 (pciex1002,4383) [Advanced Micro Devices, Inc. [AMD/ATI] 
SBx00 Azalia (Intel HDA)], instance #0
    isa (pciex1002,439d) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 LPC host controller], instance #0
    asy, instance #0
    lp, instance #0
    motherboard (driver not attached)
    pit_beep, instance #0
    pci1002,4384 (pciex1002,4384) [Advanced Micro Devices, Inc. [AMD/ATI] 
SBx00 PCI to PCI Bridge], instance #1
    pci1458,5004 (pciex1002,4399) [Advanced Micro Devices, Inc. [AMD/ATI] 
SB7x0/SB8x0/SB9x0 USB OHCI2 Controller], instance #4
    pci1022,1600 (pciex1022,1600) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 0] (driver not attached)
    pci1022,1601 (pciex1022,1601) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 1] (driver not attached)
    pci1022,1602 (pciex1022,1602) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 2] (driver not attached)
    pci1022,1603 (pciex1022,1603) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 3] (driver not attached)
    pci1022,1604 (pciex1022,1604) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 4] (driver not attached)
    pci1022,1605 (pciex1022,1605) [Advanced Micro Devices, Inc. [AMD] 
Family 15h Processor Function 5] (driver not attached)
    pci, instance #0
    fw, instance #0
    cpu, instance #0
    cpu, instance #1
    cpu, instance #2
    cpu, instance #3
    cpu, instance #4
    cpu, instance #5
    sb, instance #1
    used-resources (driver not attached)
    iscsi, instance #0
    agpgart, instance #0
    options, instance #0
    pseudo, instance #0
    xsvc, instance #0

Previous versions of OI/hipster worked just fine
but at I wanted the latest version of libreoffice
so I decided to reinstall the system. The GUI
installator could not start: something was wrong
with Xorg. Then I installed the system using the
text installer. I installed everything including
mate successfully but when I rebooted the system
failed to start Xorg (lightdm was enabled). Here
is the log file:

[  1212.319]
X.Org X Server 1.19.7

Re: [OpenIndiana-discuss] Parted on 2020.04 GUI LiveImage DVD: Huh???

2021-03-01 Thread Apostolos Syropoulos via openindiana-discuss
It seems gparted cannot work propersly with ZFS:

https://gparted.org/features.php

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] ALSA library/LibAsound for OpenIndiana?

2021-03-01 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, March 1, 2021, 5:15:42 PM GMT+2, cretin1997 via openindiana-discuss 
 wrote:

>No one care about this?
>
>It's just a small library, but it helps many applications.
>
>Do you ever care about the productivity of your users? I think not. Please 
>don't >tell me port it myself. Because if I can, I already did it.

Have you tried? BTW, do you happen to know C programming? Because if
you don't the discusion is meaningless.

A.S.

--
Apostolos Syropoulos
Xanthi, Greece





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


[OpenIndiana-discuss] Alt key not working

2021-02-14 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

For some reason the Alt on my keyboard has stopped working.
For example, Ctrl+Alt+BackSpace does not work because the Alt 
key does not work. Does anyone have any idea what should be
done to make it functional again?

Regards,
A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] The name of a new (?) OS

2021-02-05 Thread Apostolos Syropoulos via openindiana-discuss
>Apostolos asks about a recent posting about an operating system
>that begins with R:  I think he is searching for ReactOS, which is
>an independent clean-room implementation of Microsoft Windows:
>
>    https://reactos.org/what-is-reactos/

Thank you for your prompt responses. I finally foud that 
the OS I was looking for is Redox (at least I remembered that 
the first letter of thye name is T):

https://www.redox-os.org/

Thank you!

--
Apostolos Syropoulos
Xanthi, Greece







On Friday, February 5, 2021, 7:39:24 PM GMT+2, Nelson H. F. Beebe 
 wrote: 







I have created a couple of VMs for it, but do not run it regularly.

---
- Nelson H. F. Beebe                    Tel: +1 801 581 5254                  -
- University of Utah                    FAX: +1 801 581 4148                  -
- Department of Mathematics, 110 LCB    Internet e-mail: be...@math.utah.edu  -
- 155 S 1400 E RM 233                      be...@acm.org  be...@computer.org -
- Salt Lake City, UT 84112-0090, USA    URL: http://www.math.utah.edu/~beebe/ -
---

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


[OpenIndiana-discuss] The name of a new (?) OS

2021-02-05 Thread Apostolos Syropoulos via openindiana-discuss
Some days ago someone posted a message about an OS (not Q4OS) 
does anyone remember the name of the OS? If I recall correctly
its name started with "R". I looked into the list archive but
I could not find the name.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Mailing list etiquette reminder (was: OpenIndiana as a server.)

2021-02-01 Thread Apostolos Syropoulos via openindiana-discuss
>My apologies if this email is a bit of a mess, I only have a high school
>degree, I have a neurological disorder, and english is not my primary
>language.

Hello /tony,

I think there is no reason to aplogize for anything. You expressed your
opinion and IMHO you are entitled to do so. As about your problems, believe
me everyone has problems and of course university degrees do not make people
better.

Kind regards,
A.S.
--
Apostolos Syropoulos
Xanthi, Greece







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


Re: [OpenIndiana-discuss] OpenIndiana as a server.

2021-01-31 Thread Apostolos Syropoulos via openindiana-discuss
 On Sunday, January 31, 2021, 10:00:10 AM GMT+2, Jason Long via 
openindiana-discuss  wrote: 

>
>No, I'm not bot.
>

Then you are a troll!
A.S.


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


[OpenIndiana-discuss] compiling wine-5.0.3

2021-01-27 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

I am trying to compile wine-5.0.3. The first problem is that for some
reason it does not use the -fPIC option when compiling files to craate
a shared object. I did the following and this "fixed" (?) the problem:

--- configure   2020-11-10 21:43:43.0 +
+++ ../../wine-5.0.3/configure  2021-01-16 18:29:42.749346792 +
@@ -9294,8 +9294,8 @@
   *)
 case $host_cpu in
   *i[3456789]86*)
-    DLLFLAGS="$DLLFLAGS -fno-PIC"
-    LDDLLFLAGS="-fno-PIC" ;;
+    DLLFLAGS="$DLLFLAGS -fPIC"
+    LDDLLFLAGS="-fPIC" ;;
   *)
 DLLFLAGS="$DLLFLAGS -fPIC"
 LDDLLFLAGS="-fPIC" ;;

After this I see the following error.

make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/msvcrt'
gcc -c -o iob.o iob.c -I. -I../../include -D__WINESRC__ -D_MT -D_MSVCR_VER=0 
-D_REENTRANT -fPIC \
  -Wall -pipe -fno-stack-protector -fno-strict-aliasing 
-Wdeclaration-after-statement -Wempty-body \
  -Wignored-qualifiers -Wshift-overflow=2 -Wstrict-prototypes -Wtype-limits \
  -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith -Wlogical-op 
-gdwarf-2 \
  -gstrict-dwarf -fno-omit-frame-pointer -g -O2
gcc -c -o mathf.o mathf.c -I. -I../../include -D__WINESRC__ -D_MT 
-D_MSVCR_VER=0 -D_REENTRANT -fPIC \
  -Wall -pipe -fno-stack-protector -fno-strict-aliasing 
-Wdeclaration-after-statement -Wempty-body \
  -Wignored-qualifiers -Wshift-overflow=2 -Wstrict-prototypes -Wtype-limits \
  -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith -Wlogical-op 
-gdwarf-2 \
  -gstrict-dwarf -fno-omit-frame-pointer -g -O2
gcc -c -o onexit.o onexit.c -I. -I../../include -D__WINESRC__ -D_MT 
-D_MSVCR_VER=0 -D_REENTRANT -fPIC \
  -Wall -pipe -fno-stack-protector -fno-strict-aliasing 
-Wdeclaration-after-statement -Wempty-body \
  -Wignored-qualifiers -Wshift-overflow=2 -Wstrict-prototypes -Wtype-limits \
  -Wunused-but-set-parameter -Wvla -Wwrite-strings -Wpointer-arith -Wlogical-op 
-gdwarf-2 \
  -gstrict-dwarf -fno-omit-frame-pointer -g -O2
../../tools/winebuild/winebuild -w --implib -o libmsvcrt.a --export msvcrt.spec 
iob.o mathf.o onexit.o
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/msvcrt'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/msvcrtd'
make[1]: 'libmsvcrtd.a' is up to date.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/msvcrtd'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/strmbase'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/strmbase'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/strmiids'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/strmiids'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/ucrtbase'
make[1]: 'libucrtbase.a' is up to date.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/ucrtbase'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/uuid'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/uuid'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/winecrt0'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/winecrt0'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/wmcodecdspuuid'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/opt/container/wine/wine-5.0.3/dlls/wmcodecdspuuid'
make[1]: Entering directory '/opt/container/wine/wine-5.0.3/dlls/acledit'
../../tools/winegcc/winegcc -o acledit.dll.so --wine-objdir ../.. -fPIC 
-fasynchronous-unwind-tables -shared \
  acledit.spec -mno-cygwin main.o -lsocket -lnsl -L/opt/gnu/wine/lib 
-R/opt/gnu/wine/lib
Undefined   first referenced
 symbol in file
__wine$func$msvcrt$1016$fseek   
../../dlls/msvcrt/libmsvcrt.a(msvcrt.QzX9Xq.o)
__wine$func$msvcrt$1026$getenv  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.gjkAK5.o)
__wine$func$msvcrt$1021$fwrite  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.KeF03G.o)
__wine$func$msvcrt$1062$localtime   
../../dlls/msvcrt/libmsvcrt.a(msvcrt.VvgQJY.o)
__wine$func$msvcrt$971$atoi 
../../dlls/msvcrt/libmsvcrt.a(msvcrt.k1sren.o)
__wine$func$msvcrt$1003$fprintf 
../../dlls/msvcrt/libmsvcrt.a(msvcrt.0oCzmk.o)
__wine$func$msvcrt$1101$rewind  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.m4hlr5.o)
__wine$func$msvcrt$1107$signal  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.EmiBA7.o)
__wine$func$msvcrt$986$exit 
../../dlls/msvcrt/libmsvcrt.a(msvcrt.sZ6bmO.o)
__wine$func$msvcrt$1114$sscanf  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.HmcA6N.o)
__wine$func$msvcrt$1121$strcpy  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.INWqaR.o)
__wine$func$msvcrt$1116$strcat  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.XbPTAD.o)
__wine$func$msvcrt$1118$strchr  
../../dlls/msvcrt/libmsvcrt.a(msvcrt.fS2m9v.o)

Re: [OpenIndiana-discuss] A mailing list for Tribblix

2021-01-24 Thread Apostolos Syropoulos via openindiana-discuss
I believe we are a small community and we cannotr afford to 
become even smaller. After all, all distros use the same kernel
and problems with drivers, file systems, etc., are the same.
A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


[OpenIndiana-discuss] Σχετ: Linux file systems support on OI?

2021-01-22 Thread Apostolos Syropoulos via openindiana-discuss
I think you can use FUSE.

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Σάβ, 23 Ιαν, 2021 στις 9:04, ο χρήστηςHung Nguyen Gia via 
openindiana-discuss έγραψε:   Does OI 
support Linux file systems, e.g: Ext2/3/4, XFS, JFS...?

And support to what extent? read/write or read-only?

Does it a kernel driver or FUSE driver?

How could I mount a Linux file system under OI?

Please let me know. Thanks.

___
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] Fcitx

2021-01-21 Thread Apostolos Syropoulos via openindiana-discuss
Indeed but it seems that is not thayt easy to compile it as it depends
on many things:

https://deepmind.t-salon.cc/article/2948

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Just get Pale Moon

2021-01-14 Thread Apostolos Syropoulos via openindiana-discuss
Are we sure that Hung Nguyen Gia is not a troll?

--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] When this misery end?

2021-01-10 Thread Apostolos Syropoulos via openindiana-discuss
On Sunday, January 10, 2021, 6:14:49 PM GMT+2, Hung Nguyen Gia via 
openindiana-discuss  wrote:

>Illumos is not 64 bit ready. This is why the compiler has to target 32 bit by 
>default. All Illumos >distros have this limitation.

The kernel in my system is a 64bit binary. This means the system is a 64bit 
system. 

>Don't get me wrong, I have read that many parts of the OS itself remain to be 
>32 bit, 
>e.g: nscd, they are not yet 64 bit ready.

Older versions of various Linux distros were the same: they provided bith 32bit 
and 64bit
binaries for reasons of compatibility. Now they only provide 64bit binaries. 
Illumos-based
systems still provide both 32bit and 64bit binaries. I read somewhere that 
Solaris 11 does 
not supply 32bit binaries anymore. Maybe in the future, the people who are 
packaging OI
will do the same. 
A.S.

--
Apostolos Syropoulos
Xanthi, Greece






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


Re: [OpenIndiana-discuss] Merging OI + OmniOS? (And OpenZFS vs ZFS)

2021-01-06 Thread Apostolos Syropoulos via openindiana-discuss


>Is IDLE packaged by OI? Missing a dependency then?

This means that IDLE should be packaged with the tkinter?
A.s.
--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Merging OI + OmniOS? (And OpenZFS vs ZFS)

2021-01-05 Thread Apostolos Syropoulos via openindiana-discuss
>> $ pkg list -a|grep tkinter-37
>> library/python/tkinter-37 3.7.7-2020.0.1.1
>You omitted the most important column: it should be i-- and not ---

Today I installed the missing package and IDLE is working just fine.
BTW, this is a piece of information that should be added to the OI
documentation.

Thank you for your help.
A.S.

--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] Merging OI + OmniOS? (And OpenZFS vs ZFS)

2021-01-04 Thread Apostolos Syropoulos via openindiana-discuss
OK I got it but still the question is: Why tkinteris a separate package? IMHO, 
it makes nosense to have as a separate package. Afterall it is part of the core 
python distribution.
AS
Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Δευ, 4 Ιαν, 2021 στις 22:39, ο χρήστηςAndreas 
Wacknitz έγραψε:   Am 04.01.21 um 18:44 schrieb Apostolos 
Syropoulos via openindiana-discuss:
>> Make sure you have installed tkinter-37:
>> $  pkg list -a|grep tkinter-37
>> library/python/tkinter-37 (openindiana.org) 3.7.7-2020.0.1.1   i--
>>
>> For me it works as expected.
> Well the package is installed but idle3.7 is not working:
>
> $ pkg list -a|grep tkinter-37
> library/python/tkinter-37 3.7.7-2020.0.1.1
You omitted the most important column: it should be i-- and not ---

> Now I compiled Python 3.9
>
> $python3.9 --version
> Python 3.9.1
>
> and idle3.9 works just fine. Also, I have tried some
> simple programs that make use of tkinter and there
> is absolutely no problem.
>
> Best regards,
> Apostolos
>
> --
> Apostolos Syropoulos
> Xanthi, Greece
>
>
> ___
> 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
  
___
openindiana-discuss mailing list
openindiana-discuss@openindiana.org
https://openindiana.org/mailman/listinfo/openindiana-discuss


Re: [OpenIndiana-discuss] Merging OI + OmniOS? (And OpenZFS vs ZFS)

2021-01-04 Thread Apostolos Syropoulos via openindiana-discuss
>Make sure you have installed tkinter-37:
>$  pkg list -a|grep tkinter-37
>library/python/tkinter-37 (openindiana.org) 3.7.7-2020.0.1.1   i--
>
>For me it works as expected.

Well the package is installed but idle3.7 is not working:

$ pkg list -a|grep tkinter-37
library/python/tkinter-37 3.7.7-2020.0.1.1  

Now I compiled Python 3.9 

$python3.9 --version
Python 3.9.1

and idle3.9 works just fine. Also, I have tried some
simple programs that make use of tkinter and there 
is absolutely no problem.

Best regards,
Apostolos

--
Apostolos Syropoulos
Xanthi, Greece


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


Re: [OpenIndiana-discuss] Merging OI + OmniOS? (And OpenZFS vs ZFS)

2021-01-04 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, January 4, 2021, 5:00:08 PM GMT+2, Aurélien Larcher 
 wrote:

>I am just a bit concerned that with the current model some things may
>diverge too much: last time I worked on updating Python 3.7 and 3.8 test
>suite results looked very different on OmniOS and OI.
>Also the merge commit strategy for the pkg5 repository makes it very
>difficult to follow history.

This is quite irrelevant to the discussion but since you mentioned Python may 
ask why
the Python's IDLE (Integrated Development and Learning Environment) is not 
working?
When running it I get:

$ idle3.7
** IDLE can't import Tkinter.
Your Python may not be configured for Tk. **

I think this is major problem since most simple GUI applications
use tkinter. And since there is no pygame or anything else, one can
do no GUI programming with Python. Am I missing something?

Regards,
Apostolos

--
Apostolos Syropoulos
Xanthi, Greece











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


[OpenIndiana-discuss] Firefox problem

2020-11-23 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

Today I tried to visit the following web page

www.wearhouse.shop

and I got the following response:

Secure Connection Failed

The connection to www.wearhouse.shop was interrupted while the page was loading.

    The page you are trying to view cannot be shown because the authenticity of 
the received data could not be verified.
    Please contact the website owners to inform them of this problem.

Learn more…

Report errors like this to help Mozilla identify and block malicious sites

I tried the visit the same cite using Firefox on a Windows 7 VM and it works 
just fine. So I guess that the current version of Firefox is too old. Are there
any plans to get a newer version?

Regards,
A.S.

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Lightdm working Geforce GTX1650

2020-11-02 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, November 2, 2020, 9:26:34 PM GMT+2, russell 
 wrote:

>So deleted the problem BE and created a new BE and got the
>NVIDIA-Solaris-x86-455.28.run installed so Lightdm is working correctly.

Yes it does! I have checked again on the "faulty" system and now it works just 
fine.
A/S/
--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Since OI update - Lightdm fails to start

2020-10-29 Thread Apostolos Syropoulos via openindiana-discuss
On Wednesday, October 28, 2020, 5:17:26 PM GMT+2, russell 
 wrote:


>Just performed a "pkg update -v --be-name"  on 28th >October @13:43,
>after reboot the new BE is working fine.

I did the same today on a system that is running
2020.04 and lightdm fails to start. 

Regards,

A.S.
--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Since OI update - Lightdm fails to start

2020-10-24 Thread Apostolos Syropoulos via openindiana-discuss
On Saturday, October 24, 2020, 4:46:01 PM GMT+3, Aurélien Larcher 
 wrote:


>Can you provide more details like logs, type of hardware etc...

In my case lightdm does not start at all and the system reports
that the service

svc:/application/graphical-login/lightdm:default

has failed. For some reason, the nvidia driver fails. I have
a GT210 nvidia card and this started a week ago or even 10 days 
ago. I have tried to install a new nvidia driver. IN this case
lightdm starts and the login screen appears. However, it fails to
login. Since I did some almost stupid things in order to install
a different version of the nvidia driver, it is quite possible 
that there is something wrong with the specific version of the
nvidia driver.

Regards,

Apostolos


--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Security alert: important fix for illumos-gate has been integrated

2020-10-24 Thread Apostolos Syropoulos via openindiana-discuss
But I upgraded a few days ago and I couldnot get the GUI. There was an error 
aboutlightdm. Has anybody looked in thisproblem?
Thanks in advance!Apistolos

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Παρ, 23 Οκτ, 2020 στις 21:30, ο χρήστηςAndreas 
Wacknitz έγραψε:   Hi all,

illumos-gate had an important fix for a PAM vulnerability (pre-auth
remote root exploit as described here: CVE-2020-14871
) yesterday.
This change has been integrated in our package repository last night.
Please update your OpenIndiana Hipster installations (pfexec pkg update
-v ) and reboot in order to close that gap.

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] Qt5 and libgcc_s

2020-10-20 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, October 19, 2020, 10:33:22 PM GMT+3, Andreas Wacknitz 
 wrote:

>Please read http://docs.openindiana.org/dev/userland/
>It is very important to use our build system. With it you can create
>your own packages, and if something is interesting for others, you could 
>create pull
>requests on Github for it and it can be integrated into OI.

This is a good idea provided one has the time and energy to do it.
However, I will try my best.

>It takes some time to get acquainted with it but it's worth it. Building
>applications and deliver tar files to machines is not 21st century.

As I said time is one problem... As about the 21st century we have a long
way ahead...

Regards,

apostolos

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] Qt5 and libgcc_s

2020-10-19 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, October 19, 2020, 5:19:49 PM GMT+3, Gary Mills 
 wrote:

>What was the application?  Is it already available from OI?  As far as
>I can tell, only desktop/fbreader, media/vlc, and system/virtualbox
>are available from OI?

The application is called LANShare

https://github.com/abdularis/LAN-Share

and it is not available from OI. It is very easy to make a Solaris package
but I have no idea how to make a new style package... I want to use it where
I work in order to easily transfer files from one computer to another.

>It sounds as if the application requires gcc-6, but you tried to build
>it with gcc-7.  Can you try gcc-6 instead?

Well I actually use gcc-6! I was thinking that the compiler would be
upgraded while upgrading the system but it seems this is not true. But
now I will not do anything since, as I have already reported in another
message, I installed Qt5 on a system and the system became useless as I
could not log in. When the problem will be fixed I think I will remove
gcc-6 and I will install gcc-7.

Best regards,

Apostolos
--
Apostolos Syropoulos
Xanthi, Greece






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


[OpenIndiana-discuss] Instalation of Qt5

2020-10-19 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

Today I tried to install Qt5 on a system with 
illumos-28de4f3c32 that was installed in September 
2020. I entered the command

# pkg install Qt5 

and indeed Qt5 was installed on my system.
For some reason I had to log out and when I tried
to log in again, the system refused to allow me to
log in and displayed the followoing message:

Could not connect to session bus: Failed to connect
to socket /tmp/dbus-m55qeyVeV2: Connection refused

Fortunately, the pkg command created a backup boot
environment so I deactivated the current BE and 
activated the previously active BE. The moral? 
Do not upgrade now. How to fix the problem? I have
no idea.

Regards,

Apostolos
--
Apostolos Syropoulos
Xanthi, Greece

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


[OpenIndiana-discuss] Qt5 and libgcc_s

2020-10-18 Thread Apostolos Syropoulos via openindiana-discuss
Hello, 

I tried to compile a Qt5 application and during the last stage I got the 
following error:

apostolo@adalind>> make
g++ -m32 -Wl,-R,/usr/lib/qt/5.8/lib -Wl,-R,/usr/gcc/7/lib/ -o LANShare main.o 
settings.o util.o singleinstance.o mainwindow.o receiverselectordialog.o 
aboutdialog.o settingsdialog.o devicebroadcaster.o receiver.o sender.o 
transfer.o transferserver.o device.o devicelistmodel.o transferinfo.o 
transfertablemodel.o qrc_res.o moc_singleinstance.o moc_mainwindow.o 
moc_receiverselectordialog.o moc_aboutdialog.o moc_settingsdialog.o 
moc_devicebroadcaster.o moc_transfer.o moc_transferserver.o moc_transferinfo.o 
moc_transfertablemodel.o   -L/usr/lib -L/usr/X11/lib -L/usr/lib/qt/5.8/lib 
-lQt5Widgets -lQt5Gui -lQt5Network -lresolv -lsocket -lxnet -lnsl -lQt5Core 
-lGL -lpthread -lrt
ld: fatal: file /usr/gcc/6/lib/libgcc_s.so: version 'GCC_7.0.0' does not exist:
    required by file /usr/lib/qt/5.8/lib/libQt5Gui.so
ld: fatal: file /usr/gcc/6/lib/libgcc_s.so: version 'GCC_7.0.0' does not exist:
    required by file /usr/lib/libicui18n.so.66
ld: fatal: file processing errors. No output written to LANShare
collect2: error: ld returned 1 exit status
make: *** [Makefile:303: LANShare] Error 1

First I copied /usr/gcc/6/lib/libgcc_s.so.1 to /usr/gcc/6/lib/libgcc_s.so.1.ORIG
and then I copied /usr/gcc/7/lib/libgcc_s.so.1 to /usr/gcc/6/lib. This allowed
me to complete the compilation. Of course this is a hack and not the way things
should be done. Of course the application runs just fine.

Regards,

Apostolos

--
Apostolos Syropoulos
Xanthi, Greece

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


[OpenIndiana-discuss] "strange" behavior

2020-10-17 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

Last week I installed OI/hipster on four identical machines using the 
latest installation DVD (not the text installer). Then, I upgraded to
the latest version of OI/hipster because I wanted to install LibreOffice
on all machines. Everything was OK and there was absolutely no problem.
On Friday I tried to do the same on a fifth machine that was identical to 
the previous 4. I installed the OS and everything was OK. Then, I tried 
to upgrade the system. The process finished successfully but after reboot
the system refused to start the login screen. There was a message that
lightdm had failed to start. Also, there was an error in Xorg.0.log.
I am not sure but I think something is wrong with the latest version
of OI/hipster. Has anybody seen this kind of problem? 

Regards,

Apostolos

--
Apostolos Syropoulos
Xanthi, Greece

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


Re: [OpenIndiana-discuss] OpenIndiana LibreOffice Instalation

2020-10-05 Thread Apostolos Syropoulos via openindiana-discuss
On Monday, October 5, 2020, 1:20:39 PM GMT+3, Eric Bautsch 
 wrote:
>
>Looks to me like you have remnants of your old install hanging around.
>
>Try pg uninstall 
>desktop/application/libreoffice4@4.4.7.2,5.11-0.0.151.1.8:20161028T214000Z

Indeed this was the problem. In what follows I have put together all the 
commands
that I have used to completely remove LO52 and LO4:

pkg uninstall desktop/application/libreoffice52-desktop-int
pkg uninstall libreoffice52
pkg uninstall libreoffice4
pkg unset-publisher localhostoih
pkg uninstall sfe/library/g++/liborcus-011@0.11.2-0.0.151.1.8
pkg uninstall sfe/library/g++/liborcus@0.7.1-0.0.151.1.8
pkg uninstall sfe/library/g++/libvisio@0.1.5-0.0.151.1.8
pkg uninstall sfe/library/g++/libcdr@0.1.3-0.0.151.1.8
pkg uninstall sfe/library/g++/libmspub@0.1.2-0.0.151.1.8
pkg uninstall sfe/library/g++/libodfgen@0.1.6-0.0.151.1.8
pkg uninstall sfe/library/g++/libwpg@0.3.1-0.0.151.1.8
pkg uninstall sfe/library/g++/libwpd@0.10.1-0.0.151.1.8
pkg uninstall sfe/library/g++/libwps@0.4.3-0.0.151.1.8
pkg uninstall sfe/library/g++/librevenge@0.0.3-0.0.151.1.8
pkg uninstall sfe/library/g++/libixion@0.9.1-0.0.151.1.8
pkg uninstall sfe/library/g++/libixion-011@0.11.1-0.2017.0.0.5
pkg uninstall pkg://localhostoih/system/library/g++/boost@1.59.0
pkg install -v desktop/office/libreoffice

Regards,
Apostolos

--
Apostolos Syropoulos
Xanthi, Greece




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


[OpenIndiana-discuss] OpenIndiana LibreOffice Instalation

2020-10-05 Thread Apostolos Syropoulos via openindiana-discuss



Hello,

I just discovered that hipster has a libreoffice package. So
I wanted to install this package. First I removed the old
package:

# pkg uninstall desktop/application/libreoffice52-desktop-int
# pkg uninstall libreoffice52
# pkg unset-publisher localhostoih

When I entered the following command:

# pkg install -v desktop/office/libreoffice

installation failed with the following message (not all lines are shown):

 Startup: Refreshing catalog 'hipster-encumbered' ... Done
 Startup: Refreshing catalog 'openindiana.org' ... Done
Planning: Solver setup ... Done (5.515s)
Planning: Running solver ... Done (2.238s)
Planning: Finding local manifests ... Done (0.177s)
Planning: Package planning ... Done (4.055s)
Planning: Merging actions ... Done (4.654s)
Planning: Checking for conflicting actions ... Done (4.484s)
           Packages to install: 25
       Create boot environment: No
Create backup boot environment: No
          Rebuild boot archive: No

Changed packages:
openindiana.org
  desktop/office/libreoffice
    None -> 6.4.3-2020.0.1.1
  library/c++/libabw
    None -> 0.1.3-2020.0.1.0
  library/c++/libcdr
    None -> 0.1.6-2020.0.1.1
  library/c++/libcmis
    None -> 0.5.2-2020.0.1.0
  library/c++/libe-book
    None -> 0.1.3-2020.0.1.1
  library/c++/libepubgen
    None -> 0.1.1-2020.0.1.0
  library/c++/libetonyek
    None -> 0.1.9-2020.0.1.0
  library/c++/libfreehand
    None -> 0.1.2-2020.0.1.2
  library/c++/libmspub
    None -> 0.1.4-2020.0.1.2
  library/c++/libmwaw
    None -> 0.3.15-2020.0.1.0
  library/c++/libodfgen
    None -> 0.1.7-2020.0.1.0
  library/c++/libpagemaker
    None -> 0.0.4-2020.0.1.1
  library/c++/libqxp
    None -> 0.0.2-2020.0.1.1
  library/c++/librevenge
    None -> 0.0.4-2020.0.1.1
  library/c++/libstaroffice
    None -> 0.0.7-2020.0.1.0
  library/c++/libvisio
    None -> 0.1.7-2020.0.1.1
  library/c++/libwpd
    None -> 0.10.3-2020.0.1.0
  library/c++/libwpg
    None -> 0.3.2-2020.0.1.0
  library/c++/libwps
    None -> 0.4.9-2020.0.1.0
  library/c++/libzmf
    None -> 0.0.2-2020.0.1.1
  library/liblangtag
    None -> 0.6.3-2020.0.1.1
  library/mpich/gcc
    None -> 3.3.2-2020.0.1.0
  library/mpich/gcc/modulefiles
    None -> 3.3.2-2020.0.1.0
  package/environment-modules
    None -> 3.2.10-2020.0.1.1
  system/library/boost
    None -> 1.64.0-2020.0.1.3

pkg install: The following packages all deliver file actions to 
usr/lib/libreoffice/share/template/common/wizard/report/stl-04.ott:

  
pkg://openindiana.org/desktop/office/libreoffice@6.4.3,5.11-2020.0.1.1:20200602T131521Z
  
pkg://localhostoih/desktop/application/libreoffice4@4.4.7.2,5.11-0.0.151.1.8:20161028T214000Z

These packages cannot be installed together. Any non-conflicting subset
of the above packages can be installed.

The following packages all deliver file actions to 
usr/lib/libreoffice/share/gallery/www-graf/bluminus.gif:

  
pkg://openindiana.org/desktop/office/libreoffice@6.4.3,5.11-2020.0.1.1:20200602T131521Z
  
pkg://localhostoih/desktop/application/libreoffice4@4.4.7.2,5.11-0.0.151.1.8:20161028T214000Z

These packages cannot be installed together. Any non-conflicting subset
of the above packages can be installed.

The following packages all deliver file actions to 
usr/lib/libreoffice/share/extensions/dict-be/README_be_BY.txt:

  
pkg://openindiana.org/desktop/office/libreoffice@6.4.3,5.11-2020.0.1.1:20200602T131521Z
  
pkg://localhostoih/desktop/application/libreoffice4@4.4.7.2,5.11-0.0.151.1.8:20161028T214000Z

These packages cannot be installed together. Any non-conflicting subset
of the above packages can be installed.

Can anybody let me know how to proceed?





-- 
Apostolos Syropoulos
Xanthi, GREECE

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


Re: [OpenIndiana-discuss] Σχετ: VirtualBox 6.1.8 on Dual AMD Opteron works

2020-10-01 Thread Apostolos Syropoulos via openindiana-discuss
Hello,

It is strange but it seems the rge driver that I am using
is not working properly. BTW, I have noticed that 

-rwxr-xr-x   1 root sys    72272 Οκτ  1 22:39 rge
-rwxr-xr-x   1 root root   63584 Οκτ  1 22:39 rge.orig

where the rge driver is from the original 2020.04 release and
rge.orig from today's update. Now networking is bak to normal.

Regards,
Apostolos

--
Apostolos Syropoulos
Xanthi, Greece







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


[OpenIndiana-discuss] Σχετ: VirtualBox 6.1.8 on Dual AMD Opteron works

2020-10-01 Thread Apostolos Syropoulos via openindiana-discuss
Hi,
I did the same and now virtual boxworks just fine. However, now domainname 
servicing does not work! Is thispossible? How can I fix it? 

Στάλθηκε από το Ταχυδρομείο Yahoo σε Android 
 
  Στις Πέμ, 1 Οκτ, 2020 στις 21:01, ο 
χρήστηςrussell έγραψε:   Hi

Perform an update an create a new BE.

Boot from the new BE, login and then with root privileges you need to 
perform the actions below

# echo set hma_disable = 1 > /etc/system.d/hma
# init 6

Once the system has rebooted, your VMs will start. (I have been running 
VB 6.1.8 on a Dual Opteron system for a couple of weeks).



___
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] With full update Can I run latest VBox

2020-09-30 Thread Apostolos Syropoulos via openindiana-discuss


On Wednesday, September 30, 2020, 9:30:08 PM GMT+3, Andreas Wacknitz 
 wrote:

>What you can do to make it work can you read in this thread:
>https://www.illumos.org/issues/12809


I will try it this weekend. Thank you very much for the information.

--
Apostolos Syropoulos
Xanthi, Greece








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


  1   2   3   4   >