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 - Andi B.

Pages: [1] 2 3 ... 59
1
Applications / Re: OO v3.18
« on: January 16, 2025, 06:32:44 pm »
Isn't there an ICU legacy package available too? yum list icu*

2
Comments, Suggestions & Questions / Re: Best Email Program on ArcaOS
« on: January 13, 2025, 11:14:43 am »
I think the topic is a bit misleading. I think you're really want to know with which program can you connect to your preferred email provider.

Our Seamonkey/Thunderbird are perfectly well email programs. Means displaying, filter, manage emails and different email accounts.

But you seem to have problems to fetch emails from some providers. First I think you've to decide if you wanna IMAP or POP and which provider do you need/like. Different providers have different authentication restrictions. That's why this discussion went of to Oaut or stunnel.... F.e. my providers don't need fancy Oaut. I usually use POP with gmx.net and a1.net. But if you need to use gmail I think the question have to be 'how to fetch email from gmail (POP/IMAP?)'? Mind Google is known to change things quite often. It also seems that Google (gmail) currently uses different restrictions in different parts of the world. So when it works f.i. here in Europe it does not mean it will in Australia. (See current discussion on weasel list.)

So I think you've to find out first what Google and Yahoo needs in your area. No clue where you're living Craig, but maybe someone in your region knows the information. I for myself quit all gmail related services a while ago as I found it to be too cumbersome to follow there ever changing restrictions.

3
Hardware / Re: USBCOM big problem
« on: January 06, 2025, 10:17:32 am »
12.14 driver packages fixed PL2303 devices for me. From the ticket -
Quote
> /Z is normally needed if you don't have RTS/CTS wired.

So I misunderstood the usbcom.txt - '/Z Forces CTS handshaking and forces DSR and CTS on.'. 'Forces handshaking' sounds to me like I need CTS active driven from the link partner. I would call left unconnected CTS/RTS/DSR/DTR as 'no hardware handshake' or 'ignoring hardware handshake lines'.

And since then my config.sys look this for up to four devices. Mind before I needed 4 lines which are remed out here. Now only one USBCOM.SYS handles all up to four devices. HTH
Code: [Select]
REM ! DEVICE=P:\util\USBCOM_PL2303\usbcom.sys /V /M:1 /N:COM5 /Z
REM ! DEVICE=P:\util\USBCOM_PL2303\usbcom.sys /V /M:1 /N:COM6 /Z
REM ! DEVICE=P:\util\USBCOM_PL2303\usbcom.sys /V /M:1 /N:COM7 /Z
REM ! DEVICE=P:\util\USBCOM_PL2303\usbcom.sys /V /M:1 /N:COM8 /Z
REM ! DEVICE=M:\OS2\BOOT\USBCOM.SYS
DEVICE=M:\OS2\BOOT\USBCOM.SYS /M:4 /N:COM6 /Z

In another ticket I found someone needed /DCD parameter to get a device to work. The documentation for this was (is) misleading (wrong) on this too. (ticket 3485 for those with access)

4
Programming / Re: DISKIO - storage device detection logic
« on: January 04, 2025, 07:08:15 pm »
Not sure what you're really want to know but DataSeeker uses DosQueryFSAttach() to distinguish between different drive types. I think I copied this from 4os2 code back then but not sure anymore. Anyway http://trac.netlabs.org/dataseeker/browser/trunk/DriveInfo.c contains the code which finds out if the drive is a disk, floppy, network, CD/DVD, or .... Also if removable or not. Looks like -

Quote
    apirc = DosQueryFSAttach(sTemp, 0, FSAIL_QUERYNAME, p2, &cbBuffer);
    //TRACE1(" apirc=%4d ", apirc);
    if ( apirc == NO_ERROR )
      {
      //TRACE1("%-8s ", p2->szName + p2->cbName + 1);
      if ( p2->cbFSDName > sizeof(DriveInfo[uDrvNo].fsName)-1 ) p2->cbFSDName = sizeof(DriveInfo[uDrvNo].fsName)-1 ;
      memcpy(DriveInfo[uDrvNo].fsName, p2->szName + p2->cbName + 1, p2->cbFSDName);
      DriveInfo[uDrvNo].fsName[p2->cbFSDName] = '\0';

      switch ( p2->iType )
        {
        case FSAT_CHARDEV:   // Resident character device
          DriveInfo[uDrvNo].type = DT_FLOPPY;
          break;

        case FSAT_PSEUDODEV: // Pusedu-character device
          if ( IsMediaRemoveable(uDrvNo) )
            DriveInfo[uDrvNo].type = DT_REMOVABLE;
          else
            DriveInfo[uDrvNo].type = DT_RAMDRIVE;
          break;

        case FSAT_LOCALDRV:  // Local drive
          if ( !strncmp (DriveInfo[uDrvNo].fsName, "CDFS", 4) )
            DriveInfo[uDrvNo].type = DT_CDROM;
          else
            if ( IsMediaRemoveable(uDrvNo) )
            DriveInfo[uDrvNo].type = DT_FLOPPY;
          else
            DriveInfo[uDrvNo].type = DT_HARDDISK;
          break;

        case FSAT_REMOTEDRV: // Remote drive attached to FSD
          if ( !strncmp (DriveInfo[uDrvNo].fsName, "RAMFS", 5) )
            DriveInfo[uDrvNo].type = DT_RAMDRIVE;
          else if ( !strncmp (DriveInfo[uDrvNo].fsName, "CDWFS", 5) )
            DriveInfo[uDrvNo].type = DT_RSJ;
          else
            DriveInfo[uDrvNo].type = DT_NETWORK;
          break;
        }


5
This seems to work with the current version 20241210. At least with my very limited testing until now. Sorry couldn't test before. But now I've to setup a new Debian box which I need rdp and with your suggested settings keyboard works better now.

Still not working is <Alt Gr> <e> EURO character and even worse @ (Alt Gr + q). Or better said I've not found a way to insert these. The way with <Alt> + number keys don't work too. No clue if this is a general limitation of rdp or some setting or....

6
Programming / Re: DISKIO - Dhrystone benchmark calc
« on: December 21, 2024, 07:27:41 pm »
-Wall - with one project I've '/Wppt- /Wppc- /Wext-'. No clue what it does but at that time I thought I've do disable these.

7
Programming / Re: DISKIO - Dhrystone benchmark calc
« on: December 21, 2024, 02:35:31 pm »
Code: [Select]
Is my printf use of '%lld' incorrect?Which compiler? You don't get any warning when compiling with -Wall?

8
Hardware / Re: Monitor suggestions
« on: December 09, 2024, 08:43:27 am »
Quote
What other device drivers, especially the IFS stuff, are you loading? What size cache are you defining for these?

The symptoms you describe all look & feel like the "out of memory" stuff I was seeing when testing the very large (>1G) JFS cache sizes here.
I usually let the IFS stuff as it is defined by ArcaOS installer. For older systems I also don't have big JFS cache. HPFS386 is remed out since long as it produces similar problems.

'mem -v' - my last tests on a pretty vanilla ArcaOS system I build up last week leads to 'out of memory' even when trying to open 4os2 or cmd windows. Sometimes afterwards it magically worked for one session but no more. -> very weird behavior with VIRTUALADDRESSLIMIT=3072. Reminds me on same experience a few years ago with another system.

So for me I can't get any system to work only near reliable with 3072. Wild guess, it may interfere with my 3840 x 2160 resolution. My observations lead me to guess there is a memory problem with the WPS or gradd or VMAN or ... with this high resolution too.

Administrator - this now runs very off topic. Maybe you wann split this thread. Thanks.

9
Hardware / Re: Monitor suggestions
« on: December 08, 2024, 10:30:46 am »
Quote
it again gives the "Couldn't load xul.dll". This is with VIRTUALADDRESSLIMT = 3072.
With VIRTUALADDRESSLIMIT=2560 it boots ok until it is about to start the desktop and then it goes black.

Now I've here two systems which behave very strange when trying to use VIRTUALADDRESSLIMT = 3072. I've not a single system/installation which works okay with this setting. I've the same intermediate 'out of memory' errors loading some programs. That's what in my config.sys about -
Code: [Select]
REM 20210711 VIRTUALADDRESSLIMIT=2560 to 3072 because of qt browser
REM 20210711 neither simplebrowser nor Seamonkey nor ndpiso plugin works with 3072 -> 2900
REM 20211023 changed to 0xXX00 as Dave suggested in AN Testers from 2850 to 2816
VIRTUALADDRESSLIMIT=2816

I've to add OpenOffice and VirtualBox also give such errors sometimes with 3072.

10
Hardware / Re: Monitor suggestions
« on: December 07, 2024, 09:29:54 am »
Quote
Max resolution offered by Panorama is 1280x1024.

Is there a "safe" way to get a higher resolution or do I simply have to experiment.
My tests with a new system tought me to -
- better use AMD
- better use DisplayPort
- don't connect both (or 3) outputs at the same time (DP, HDMI, DVI VGA) especially from cold boot.
- don't disconnect output from monitor, don't use KVMs (no KVM works here reliable either DP nor HDMI)
- HDMI output here only offers 1400 x 1050 sometimes. When DP is connected too it magically offers full 3840x2160 but system traps when selected afterwards while boot.  Of course I use short high quality cables only.
- DP usually offers full resolution (or most complete list)
- Panorama with integrated AMD Ryzen only offers 2560x1440 altough the system runs 3840x2160 perfectly well with other OSes (except Win7 which only can do 2560x1440 cause Ryzen 7 is not supported anymore with AMD Win7 driver).
- AMD RX550 works better with Panorama (and Win7) then integrated GPU
- 3840x2160 on one system (UEFI) leads to trap 000e in VMAN while 2560x1440 works.

You can also look at the tickets in mantis to find the log file of video (gradxx?) which is written at boot up to see what Panorama driver has to say. Or look into 'testlog generic' output.

11
Hardware / Re: Monitor suggestions
« on: November 15, 2024, 04:13:11 am »
I find it strange that there is so much problems with OS/2 video.  I have a dell 30inch 2560x1600 monitor that runs without any problem.  No problem with video cards, I don't have one, it runs from the built in video of the Ryzen 3 processor.
I observe different problems with OS/2 video output nowadays.

1) The BIOS decides which output is to be uses or not. Not used are sometimes switched off here. F.i. when  at boot the HDMI output is attached on my RX550 (?) the Display Port output is switched off. And vice versa. When both are attached I think DP is used and HDMI is switched off. But when something is attached to the internal Intel GPU (DP or HDMI or VGA) in parallel to the outputs of the extra graphic card, things go to complicated to describe very fast.
 
2) Integrated Intel GPU on my system does work but not with 4k. So it's kind of useless on my 3840x2160 Monitor. Needed to put in a extra graphic card and needed a ticket and work from David A. to get this card to work at full resolution.

3) Ryzen 7 integrated GPU does not work in 4k with ArcaOS too. Of course it works with the other OSes I've installed. No clue if David can fix this, need to create a ticket for that.

4) Output (DP or HDMI) is switched off when I switch the KVM to another source. But it is not switched on again when I switch back to ArcaOS. So you don't see any output anymore from your running system until reboot. Of course the other OSes switches back on the output (tested with DP and HDMI on Ryzen 7) when the KVM switches to that input.

There are even more problems with video on our platform I don't wanna go into detail. Some of them are nice to have things which result from the way we are used to work nowadays. But the above are the most annoying.

12
Setup & Installation / Re: TCP/IP 4.3 patches
« on: November 13, 2024, 11:46:09 am »
Isn't there a tcpip32.dll shiped with ACPI package? Or was it the AN kernel WPI? I think it checks if the right one is installed. I vaguely remember we need a patched one for stable SMP. 

13
Hardware / Re: Observations on intel vs AMD
« on: November 11, 2024, 10:58:34 am »
Quote
So if you want to dual boot to two operating systems, one using UEFI and one using Legacy or CSM, you would have to put those operating systems on separate drives and use the BIOS supplied F11 boot menu.
On my new Asrock B550M Pro4 with Ryzen 7 I choice to UEFI boot from the first MBR NVMe which starts the AN Launcher there. From there I can choose to start an ArcaOS installation on the MBR drive (L:\) but also the ArcaOS installation on my second GPT NVMe (D:\). I also can start GRUB/Debian on the 1. NVMe and Win7 on the second GPT drive.

Bottom line I don't need to go into BIOS to choice between OSes on MBR or GPT disks. In also have EFI partitions on both NVMe drives which I can choice in BIOS. But I think that is was not a good idea and pretty pretty sure not necessary. I can choice in BIOS to boot non UEFI from disk 1 which would start Airboot there. But this is useless as the UEFI AN Launcher makes a better job on mixed MBR/GPT disks with an EFI partition.

14
Setup & Installation / Re: Switch from CSM to UEFI
« on: November 03, 2024, 09:46:59 am »
v 2.52. Included with ArcaOS 5.1.0 EN. Built 2023-08-23. Maybe that's to old. But I really tried. Even looked into the help without any hint.

I even cleared start of the disk with DFSee and started again. But could not find how to select GPT when creating the first partition.

I think there's a basic misunderstanding here: neither MiniLVM nor PTE _create_ a GPT disk. They are partition editors that know how to manipulate an *existing* GPT disk. To create one, you must use 'InitDisk.exe' or DFSee.

After a reboot, MiniLVM will clearly identify which disks are GPT and which are MBR. 'PTE' will only display GPT and will ignore MBR (IIRC). The other partition editors ('lvm.exe' and that java thing) are useless for GPT because they can't see the actual GPT disk.
Does make sense now. But maybe you understand the confusion. Usually we used the standard tools (fdisk, lvmgui, MiniLVM) or DFSee to create all partitions and volumes. There is also the strong advise to only use ArcaOS tools to create volumes. I guess most of us know about these mentioned tools.

But I for myself never heard about (maybe I've heard but didn't recognize) InitDisk or PTE until a few days ago. Although I created one of my disks with GPT layout, probably during one of my ArcaOS installation trials, I didn't know InitDisk is needed.

So thanks for clarification.

15
Setup & Installation / Re: Switch from CSM to UEFI
« on: November 02, 2024, 01:43:17 pm »
Too old of a minilvm? Note that the latest is called the "Installation Volume Manager" and seems to handle GPT fine.
v 2.52. Included with ArcaOS 5.1.0 EN. Built 2023-08-23. Maybe that's to old. But I really tried. Even looked into the help without any hint.

I even cleared start of the disk with DFSee and started again. But could not find how to select GPT when creating the first partition.

Pages: [1] 2 3 ... 59