Login
Username:

Password:

Remember me



Lost Password?

Register now!
Main Menu
Who is Online
57 user(s) are online (53 user(s) are browsing Forum)

Members: 0
Guests: 57

more...


Browsing this Thread:   1 Anonymous Users




« 1 2 3 4 (5) 6 7 »


Re: Icaros 2.2.2 linux hosted unstable
#26
Home away from home
Home away from home


See User information
Quote:

towo2099 wrote:
The fun is, i now ave installed debian 7 (!!!) on an old Athlon X2 System with 1 GiB of memory. Here Icaros runs nearly stable, with networking and browsing with OWB seems stable enought to write this post.
Only thing i do not get to work is hostbridge. I can't add any linux app to the hostbridge, i only get lua error like:

lua:amiluaS:Replacer.lua:161attempt to index global 'filehdl' (a nil value)
stack traceback:
             
S:Replacer.lua:161in main chunk
             
[C]:  in ?


No clue, what it means.



1. please check wether replacer.lua actually exists in sys:S

2. please tell me the full AROS and LINUX paths of the application you're trying to integrate with HostBridge.

Posted on: 2018/6/4 9:36
p.bes
Icaros Desktop AROS distribution mantainer
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#25
Just popping in
Just popping in


See User information
On my main pc, even the nightly AROS with ABIv1 is not usuable.
On the other hand, there are not many apps ready for that ABI.

Now i have Icaros running also on a Thinkpad T410 with underlaying Debian 7 and kernel 3.16.

It is relative stable besides Wookie Chat is chrashing, and AiRcOS can't connect to OFTC irc network.

The same system on a Thinkpad T420 is unstable too. That's all mysterious, since the Hardware of the T410 is nearly the same as the T420.

I would realy like to use that hostbridge functionalty, so i could alternatively use the native linux apps as replacement for the unstable network apps but running on the nice desktop of aros.

That is the reason for me, to use icaros, because it would be the killer-feature if it would work.

Posted on: 2018/6/3 13:23
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#24
Quite a regular
Quite a regular


See User information
I get a LOT of the system crashes on my hosted system like you posted about. But I have not really reported it or looked into it because rather than Icaros I am running bare Aros, nightly, ABIv1 which is the bleeding edge of development.

My host is Ubuntu 17.10 64bit (currently). I do get the impression that an older version of OS on the host is likely to be better.

Posted on: 2018/6/3 12:03
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#23
Just popping in
Just popping in


See User information
The fun is, i now ave installed debian 7 (!!!) on an old Athlon X2 System with 1 GiB of memory. Here Icaros runs nearly stable, with networking and browsing with OWB seems stable enought to write this post.
Only thing i do not get to work is hostbridge. I can't add any linux app to the hostbridge, i only get lua error like:

lua:amiluaS:Replacer.lua:161attempt to index global 'filehdl' (a nil value)
stack traceback:
             
S:Replacer.lua:161in main chunk
             
[C]:  in ?


No clue, what it means.


Posted on: 2018/6/3 10:19
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#22
Just popping in
Just popping in


See User information
I didnt try 2.2.2 until now.
Icaros desktop 2.2.1 runs linux hosted using Ubuntu 16, 32bit
or Zorin OS 12.0, 32 bit with limitations: network is unstable, so I switched it off. So I dont know whether OWB
crashes. Estimated 80% to 90% of all the other AROS stuff works fine. I have tried it with several PC hardware platforms.

Posted on: 2018/6/3 9:59
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#21
Just popping in
Just popping in


See User information
So i have to ask, is anyone able to use Icaros Desktop hosted on linux and can use it without hickups?

Posted on: 2018/6/2 14:22
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#20
Quite a regular
Quite a regular


See User information
Quote:

Georg wrote:
I don't have up to date sources but in the ones I have one problem with compiler/stdc/malloc_align.c may be ...


Just to confirm, that code is still there in up to date source.

Posted on: 2018/6/2 12:50
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#19
Just popping in
Just popping in


See User information
I'm not a programmer, so i have no clue, what it means to my problem. I only want to use Icaros.

Posted on: 2018/6/2 12:30
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#18
Home away from home
Home away from home


See User information
I don't have up to date sources but in the ones I have one problem with compiler/stdc/malloc_align.c may be:

when the mem returned by malloc is misaligned only by 4 bytes, then

/* store a magic number in the place that free() will look for the
     * allocation size, so it can handle this specially */
    
tmp -= AROS_ALIGN(sizeof(size_t *));
    *((
size_t *) tmp) = MEMALIGN_MAGIC;

    
/* then store the original pointer before it, for free() to find */
    
tmp -= sizeof(void *);
    *((
void **) tmp) = orig;



the store at mem[-2] (orignal pointer) writes to malloced_memory[-1] which contains alloc size later needed by free().

Example:
malloc returned 0xFFC.
After alignment it is 0x1000.
malloc saved alloc size at 0xFF8.
malloc_align stores MEMALIGN_MAGIC at 0xFFC.
malloc_align stores orig pointer at 0xFF8 trashing size saved there by malloc.


Posted on: 2018/6/2 12:20
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 


Re: Icaros 2.2.2 linux hosted unstable
#17
Just popping in
Just popping in


See User information
Here is the result from start with notlsf and mungwall:

*** Logged alert:
Program failed
Task 
0xDF13D9B0 - [OWBMediaPlayer
Error
0x0100000C Sanity check on memory list failed
PC   
0xD913D3E1
Module arosc
.library Segment 1 .text (0xD9135460Offset 0x00007F81
Function free (0xD913D390Offset 0x00000051
Mungwall data
:
In FreePooledblock at 0xe87de170size 1020
Allocated using AllocPooled by task 0xdf13d9b0 
([OWBMediaPlayerat 0xd913e001
Module arosc
.library Segment 1 .text (0xD9135460Offset 0x00008BA1
Function posix_memalign (0xD913DFA0Offset 0x00000061
FreeMem size 1016 mismatch
Stack trace
:
0xDC2D1B7C OWB Function mp3_read_probe 0x0000019C
0xDC2BAF14 OWB 
Function av_probe_input_format3 0x00000090
0xDC2BB261 OWB 
Function av_probe_input_buffer2 0x0000013D
0xDC300EE3 OWB 
Function avformat_open_input 0x000002EB
0xDBA82900 OWB 
Function ac_open 0x00000090
0xDB5D83CF OWB 
Function _ZN7WebCore18MediaPlayerPrivate10playerLoopEv 0x0000034F
0xDBFD5CF4 OWB 
Function _ZN3WTFL16threadEntryPointEPv 0x000000A4
0xDBFF2A42 OWB 
Function _ZN3WTFL19wtfThreadEntryPointEPv 0x00000012
0xDC60BEF2 OWB 
Function StarterFunc 0x00000072
0xD7A40EF0 dos
.library Function CallEntry 0x00000050

It looks like Aros has problems with the memory management if it is running hosted. That's from the run on a 64bit hosted linux.

Posted on: 2018/6/2 11:27
 Top  Twitter  Facebook  Google Plus  Linkedin  Del.icio.us  Digg  Reddit  Mr. Wong 




« 1 2 3 4 (5) 6 7 »



You can view topic.
You cannot start a new topic.
You cannot reply to posts.
You cannot edit your posts.
You cannot delete your posts.
You cannot add new polls.
You cannot vote in polls.
You cannot attach files to posts.
You cannot post without approval.
You cannot use topic type.
You cannot use HTML syntax.
You cannot use signature.
You cannot create PDF files.
You cannot get print page.

[Advanced Search]


Search
Top Posters
1 paolone
paolone
4462
2 nikolaos
nikolaos
4206
3 magorium
magorium
4095
4 phoenixkonsole
phoenixkonsole
3942
5 deadwood
deadwood
2917
6 ncafferkey
ncafferkey
2810
7 mazze
mazze
2222
8 Kalamatee
Kalamatee
2212
9 clusteruk
clusteruk
2114
Powered by XOOPS © 2001-2025 The XOOPS Project