Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Digi

Pages: [1] 2 3 ... 5
1
Internet / Re: HTTPS server?
« on: October 05, 2024, 03:18:18 pm »
Sooo...what are our choices besides the Apache stuff?

You can take part in testing Manjary: http://os2.snc.ru/product-Manjary.html  ;)

2
Applications / Re: ANPM database error
« on: August 17, 2024, 04:50:48 am »
The netlabs repository and its mirror now work without problems on my systems.

3
Applications / Re: ANPM database error
« on: August 15, 2024, 12:09:47 am »
I see what you and David are talking about now - in ANPM your referring to the "available" files that you don't have installed - I also get 12 files listed - I was looking at the "installed" files, of which I have roughly 250 installed, and as of last week I could update them.

Once again, arcanoae-rel lacks many packages that are on netlabs-rel.

4
Applications / Re: ANPM database error
« on: August 14, 2024, 02:31:12 pm »
Try disabling https://www.2rosenthals.com/rpm.netlabs.org/release/$releasever/$basearch/

All my Arca related entries are repos.arcanoae.com based

Yes, it works without 2rosenthals. But there are not enough packages on repos.arcanoae.com.

5
Applications / Re: ANPM database error
« on: August 14, 2024, 04:23:38 am »
Are you sure that the Netlabs-Rel repository is really disabled?

It doesn't help me. Enabled repositories in my list:
https://repos.arcanoae.com/release/$releasever/
https://www.2rosenthals.com/rpm.netlabs.org/release/$releasever/$basearch/

6
Applications / Re: ANPM database error
« on: August 13, 2024, 07:46:07 am »
Even the 2Rosenthals repo doesn't work for me - same 'disk image is malformed' error as with the netlabs-rel repo - even after a yum cleaning. So the bit rot seems to be spreading. The ArcaNoae-rel repo Dave suggests only has about a dozen or so files listed (which was already installed here).

I have the same situation on my two boxes. I've been waiting for a several days for the problem to be fixed.

7
Applications / Re: lSwitcher v 2.94
« on: June 17, 2024, 05:53:49 am »
Does anyone else have an issue when Ctrl clicking the desktop icon that barely a small highlight shows up and now list of processes to kill?

Yes, I have the same problem. The list of processes is not displayed.

8
Applications / Re: lSwitcher v 2.94
« on: June 13, 2024, 11:57:52 pm »
The latest version does not save the fonts for the widget that I drop from the Font Paletter. I have to set the font again after every reboot.

PS: I tried to register for a user mailing list (specified in Readme) and received a confirmation email. But the letter sent to the mailing list was never returned to me.
I then tried to register at http://trac.netlabs.org/ to create a ticket, but the registration did not work.

9
Networking / Re: RDP Client that has send-key functionality
« on: March 20, 2024, 10:43:44 pm »
I installed version 3.4.0 and with this version I can no longer connect to Windows or ArcaOS VM but I can connect to Ubuntu Linix on my Raspberry PI.

Strange. I have no problems connecting to my servers and workstations.

I have attached the connection logs for the windows 10 VirtualBox.

Try adding the /relax-order-checks switch as this entry in your log suggests:

[17:17:46:873] [88:206d9e00] [ERROR][com.freerdp.core.update] - [check_order_activated]: [0x0a] OpaqueRect - SERVER BUG: The support for this feature was not announced! Use /relax-order-checks to ignore

10
Networking / Re: RDP Client that has send-key functionality
« on: March 18, 2024, 06:08:51 am »
Sending the Ctrl-Alt-Del combination when pressing Ctrl-Alt-End is implemented in the latest FreeRDP OS/2 port. Please check:
http://os2.snc.ru/product-freerdp.html

11
But when I connect from my OS/2 system a Linux host via FreeRDP they get the English keys instead the German ones.

Please try playing with the /kbd: switch in the latest version ( see http://os2.snc.ru/product-freerdp.html ). Something like this: /kbd:layout:0x00000407,lang:0x0407
All previous OS/2 ports were missing some function calls associated with this switch to configure the keyboard.

Note that lists of keyboards and languages can be obtained with the /list: switch.

12
Hardware / Re: The last nail in OS/2's coffin
« on: January 23, 2024, 03:57:00 am »
The crazy/drunk idea will be to grab a 64bits open source multi-kernel and make OS/2 run interpreted (not emulated) from it.

http://osfree.org/ - The beginning has already been made. As I understand it, most of the Dos* functions have already been implemented.

13
Hardware / Re: The last nail in OS/2's coffin
« on: January 22, 2024, 12:23:30 am »
Time to pay attention to the project http://osfree.org/  :)

14
In my opinion, it is a very bad idea to use varargs in exported functions.

It might be useful for you to see how a similar task is solved in libxml2:

File xmlwriter.c
/*
 * The following VA_COPY was coded following an example in
 * the Samba project.  It may not be sufficient for some
 * esoteric implementations of va_list but (hopefully) will
 * be sufficient for libxml2.
 */
#ifndef VA_COPY
  #ifdef HAVE_VA_COPY
    #define VA_COPY(dest, src) va_copy(dest, src)
  #else
    #ifdef HAVE___VA_COPY
      #define VA_COPY(dest,src) __va_copy(dest, src)
    #else
      #ifndef VA_LIST_IS_ARRAY
        #define VA_COPY(dest,src) (dest) = (src)
      #else
        #include <string.h>
        #define VA_COPY(dest,src) memcpy((char *)(dest),(char *)(src),sizeof(va_list))
      #endif
    #endif
  #endif
#endif


And SDL2. File SDL_vacopy.h
/* Do our best to make sure va_copy is working */
#if defined(__NGAGE__)
#undef va_copy
#define va_copy(dst, src) dst = src

#elif defined(_MSC_VER) && _MSC_VER <= 1800
/* Visual Studio 2013 tries to link with _vacopy in the C runtime. Newer versions do an inline assignment */
#undef va_copy
#define va_copy(dst, src) dst = src

#elif defined(__GNUC__) && (__GNUC__ < 3)
#define va_copy(dst, src) __va_copy(dst, src)
#endif


And use in your xPmPrintf something like that:
va_copy(local_va_list, given_va_list);
vsnprintf(..., ..., fmt, local_va_list);
va_end(local_va_list);


15
Applications / Re: ssh - sshd
« on: November 22, 2023, 11:31:42 pm »
sshd -D starts after the host keys are created (not sure what's the different between the above and ssh-keygen -A); but I can't login via password or by adding my private key to authorized_keys in my homedir). I'm using openssh-server from bitwise/netlabs; the latest to date.

I have the same problem. Has anyone managed to log in?

Pages: [1] 2 3 ... 5