Search found 108 matches

by softwarefailure
Tue Dec 05, 2017 2:38 pm
Forum: Platform: AmigaOne X5000 - Linux Only
Topic: ubuntu MATE 16.04.1 LTS Live USB
Replies: 119
Views: 75623

Re: ubuntu MATE 16.04.1 LTS Live USB

In System Info it says NULL for "MAC Address" and "MAC Address 2" so I guess there's something wrong with the network card? What should I do now? Contact my dealer about it?
by softwarefailure
Tue Dec 05, 2017 2:23 pm
Forum: Platform: AmigaOne X5000 - Linux Only
Topic: ubuntu MATE 16.04.1 LTS Live USB
Replies: 119
Views: 75623

Re: ubuntu MATE 16.04.1 LTS Live USB

The description of this card should show up once connected in the primary network options . Well, it doesn't. The only cards listed are: dummy0, ip6_vti0, ip6tn10, ip_vti0, tun10. And none of them works :-( It always fails during DHCP configuration although my network is configured to use DHCP and ...
by softwarefailure
Tue Dec 05, 2017 2:13 pm
Forum: Platform: AmigaOne X5000 - Linux Only
Topic: ubuntu MATE 16.04.1 LTS Live USB
Replies: 119
Views: 75623

Re: ubuntu MATE 16.04.1 LTS Live USB

Ok, I've now arrived at the network configuration screen. Two questions about that: 1) Where does the network cable go? There are two connectors for that on my X5000. One is at the top next to the USB ports and the other is below the sound board, probably from an additional network card inside the X...
by softwarefailure
Tue Dec 05, 2017 1:02 pm
Forum: Platform: AmigaOne X5000 - Linux Only
Topic: ubuntu MATE 16.04.1 LTS Live USB
Replies: 119
Views: 75623

Re: ubuntu MATE 16.04.1 LTS Live USB

So where have all the download links to Ubuntu for the X5000 gone? I wanted to install Ubuntu on my X5000 according to the following tutorial: https://amigax5000.blog/2017/07/23/installing-linux-on-the-x5000/ ...but the links to the image files are all dead. Also the links to the image files in this...
by softwarefailure
Mon Nov 13, 2017 9:08 pm
Forum: General Developer Support
Topic: Cryptography proof randomizer
Replies: 5
Views: 5365

Re: Cryptography proof randomizer

@broadblues: Thanks for the pointer!
by softwarefailure
Sat Nov 11, 2017 1:57 pm
Forum: General Developer Support
Topic: Cryptography proof randomizer
Replies: 5
Views: 5365

Cryptography proof randomizer

What's the best way to generate strong random numbers on OS4? It needs to be applicable for cryptography-related contexts so things like srand(time(NULL)) and rand() obviously don't fit because they are never random enough. MorphOS has random.library which does a pretty good job here. Is there an OS...
by softwarefailure
Tue Sep 26, 2017 9:37 pm
Forum: General Developer Support
Topic: REQS_MaxChars - wrong documentation?
Replies: 9
Views: 7412

Re: REQS_MaxChars - wrong documentation?

I've fixed both STRINGA_MaxChars and REQS_MaxChars entries to make it clear that space for the nul-terminator needs to be included in the character count. In other words, both xenic and broadblues are wrong, just to make that clear again in case people dig up this thread later. No need to make thin...
by softwarefailure
Tue Sep 26, 2017 6:02 pm
Forum: General Developer Support
Topic: REQS_MaxChars - wrong documentation?
Replies: 9
Views: 7412

Re: REQS_MaxChars - wrong documentation?

broadblues wrote:so if you need to enter 10 chars then REQS_MaxChars must be 11 (and the buffer must be 12 )
Why must the buffer be 12 bytes to enter 10 chars? Does it write two null terminators?
by softwarefailure
Tue Sep 26, 2017 4:13 pm
Forum: General Developer Support
Topic: REQS_MaxChars - wrong documentation?
Replies: 9
Views: 7412

Re: REQS_MaxChars - wrong documentation?

xenic wrote: I don't see the problem.
The problem is that the documentation is wrong. Of course it would be utter non-sense to change the behaviour of REQS_MaxChars and break binary compatibility but the documentation needs to be fixed because what it currently states is wrong.
by softwarefailure
Mon Sep 25, 2017 6:59 pm
Forum: General Developer Support
Topic: REQS_MaxChars - wrong documentation?
Replies: 9
Views: 7412

REQS_MaxChars - wrong documentation?

I think the autodoc on REQS_MaxChars is wrong. It says: Maximum number of characters in string gadget. Must not be larger than size of REQS_Buffer - 1. Defaults to 127. In reality, however, REQS_MaxChars seems to require the buffer size of REQS_Buffer and not the buffer size of REQS_Buffer minus 1. ...