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.


Topics - R.M. Klippstein

Pages: 1 [2] 3 4 5
16
Applications / LxLite syntax question
« on: September 26, 2018, 09:52:19 pm »
What is the correct LxLite command line syntax for uncompressing ACPI3_23_01.PAT to produce an acceptable ACPI.PSD for OS4 SVN5238 or 5239?
Also is anyone willing to share a copy of ACPI4.BPD? I realize my chances of this happening are "Slim and None" and  Slim left town with one of my Ex-Wives!

Thanks  klipp

17
Hardware / File system is dirty! Need help!
« on: September 07, 2018, 01:15:16 am »
[L:\]chkdsk /F
The current hard disk drive is: L:
The type of file system for the disk is JFS.
The JFS file system program has been started.
CHKDSK  Block size in bytes:  4096
CHKDSK  File system size in blocks:  51508326
CHKDSK *Phase 0 - Replay Journal Log
CHKDSK *Phase 1 - Check Blocks, Files/Directories, and Directory Entries
CHKDSK  Duplicate block references have been detected in meta-data.
CHKDSK CANNOT CONTINUE.
CHKDSK  File system is dirty.
    ......@..

Any ideas will REALLY be appreciated. I thought I might be able to fix this with DFSee, but no luck so far

Thanks  klipp

18
Networking / I.P. Interface pool
« on: July 21, 2018, 03:35:54 am »
Is there a way of displaying the available I.P.'s on a ArcaOS system?

Thanks klipp

19
Applications / Set I.P. command ?
« on: June 24, 2018, 09:32:14 pm »
Is it possible to set the I.P. of a booting partition in config.sys?

thanks klipp

20
Applications / SMPlayer-How to get rid of "-slave" option
« on: March 22, 2018, 05:08:11 am »
I get this error when trying to load SMPlayer, How do I get rid of the -slave option?

MEncoder SVN-r34646-OS2-4.4.6 (C) 2000-2012 MPlayer Team
-slave is not an MEncoder option

Exiting... (error parsing command line)

Thanks for any ideas.  klipp

21
Applications / Samba and ArcaOS?
« on: January 19, 2018, 03:02:57 am »
Samba has worked great here ever since the later ArcaOS betas. Now I can't get it to work on ArcaOS any more. I've tried this on both AMD & Intel based machines and get the same problems. The machines are listed in "Network Neighborhood" but shared subdirectories are not listed so sharing can't take place. Samba still works fine on eCS box in the LAN. This seems to have started possibly after one of the many YUM updates.
I keep thinking I've screwed up inadverantly, but making the same mistake on two different machines that used to work fine is a stretch.
Thanks in advance for any comments (good or bad!)

klipp

22
Opening the Arca Noae  Package Manager gives the following error:

Line 12 of init in yummie.vrm:
+++  Call SockLoadFunc;

Yum worked fine until I tried to figure out and fix this error, now its dead also.
Need someone smarter than me to help me fix this.

Thanks klipp

23
Programming / libc-0.6.6-35.oc00.i686 question
« on: October 14, 2017, 06:15:23 pm »
Are we ever going to see libc-0.6.6-32.oc00.i686 updated to libc-0.6.6-35.oc00.i586 on  either the Arcanoae or Netlabs repositories?

24
Programming / Get a Free copy of ArcaOS 5.0.1
« on: September 21, 2017, 09:25:22 pm »
Go to http://www.os2-ecs-Mexico.com for details.

25
Setup & Installation / Installing different sound card drivers ArcaOS
« on: June 03, 2017, 04:36:24 pm »
Recently there was a discussion about changing sound card drivers using minstall on this forum. I can't seem to find it to make a reply. Can anyone tell me where this discussion took place?

Thanks,  klipp

26
Programming / DropBox problem
« on: January 04, 2017, 12:24:40 am »
Has anybody got DropBox working correctly on OS2-eCS? I'm partway there but can't seem to come up with the final fix. I'm using npdpbox-0.4.0-b5 with Netdrive-NDFS315. It passes the authorization and brings up my current DropBox directory list on Firefox, but I cant do anything, as there is no DropBox folder created in my root directory. In Windows7 on another machine I can add or delete files and those actions show up in my eCS dropbox in Firefox.
Anybody got any ideas as to what I've missed?  Thanks

klipp

27
Programming / OS4 -4762 problem--- no acpi4.bpd
« on: December 17, 2016, 08:33:26 pm »
Hey os4 user, where can I get acpi4.bpd? Can't seem to get SVN4762 to go without it!
thanks   klipp

28
Programming / Need help with gcc copy routine
« on: November 12, 2016, 10:46:48 pm »
The following is a copy routine that can be used in gcc to copy a file or directory to another location while running a compile. I have this routine embedded in a .cpp file (alloc.cpp – this is just for testing to make sure the routine works) the routine will be used later in the compile that takes about 1 hour to build. I've defined “out” and now need to plug in the values for src_path =argv[1]; and dst_path = argv[2]; I've been unable to come up with the correct values for argv[1&2] and get the error indicated below. For testing purposes I'm using F:\4.0.37\testcopy for  the destination path  and F:\4.0.37\include\testfile.txt for the file to be copied.
Here is the routine in alloc.cpp:

*   Header Files                                                               *
*******************************************************************************/
#define RTMEM_NO_WRAP_TO_EF_APIS

#define exit

#include <iprt/mem.h>
#include "internal/iprt.h"

#include <iprt/assert.h>
#include <iprt/string.h>


#include <stdio.h>

int main(int argn, char * argv[]) {

    int src_fd, dst_fd, n, err;
    unsigned char buffer[4096];
    char * src_path, dst_path;

    // Assume that the program takes two arguments the source path followed
    // by the destination path.

    if (argn != 3) {
        printf("Wrong argument count.\n");
        exit(1);
    }

    src_path = argv[1];
    dst_path = /testcopy;

    src_fd = open(src_path, O_RDONLY);
    dst_fd = open(dst_path, O_CREAT | O_WRONLY);

    while (1) {
        err = read(src_fd, buffer, 4096);
        if (err == -1) {
            printf("Error reading file.\n");
            exit(1);
        }
        n = err;

        if (n == 0) break;

        err = write(dst_fd, buffer, n);
        if (err == -1) {
            printf("Error writing to file.\n");
            exit(1);
        }
    }

    close(src_fd);
    close(dst_fd);
}


RTDECL(void *) RTMemDupTag(const void *pvSrc, size_t cb, const char *pszTag) RT_NO_THROW
{

And here is  the error output:

kBuild: Compiling filesplitter - F:/4.0.37/src/bldprogs/filesplitter.cpp
kBuild: Compiling RuntimeBldProg - F:/4.0.37/src/VBox/Runtime/common/alloc/alloc.
cpp
F:/4.0.37/src/VBox/Runtime/common/alloc/alloc.cpp: In function 'int main(int, cha
r**)':
F:/4.0.37/src/VBox/Runtime/common/alloc/alloc.cpp:59:22: error: invalid conversio
n from 'char*' to 'char' [-fpermissive]
     dst_path = argv[2];
                      ^
F:/4.0.37/src/VBox/Runtime/common/alloc/alloc.cpp:61:29: error: 'O_RDONLY' was no
t declared in this scope
     src_fd = open(src_path, O_RDONLY);


Thanks in advance for any help

klipp

29
Hardware / H.P. 3630 - anybody got one of these working on OS2?
« on: October 19, 2016, 12:44:57 am »
Got this printer working on Linux & Windoz but havn't been able to get it working on OS2 (surprise, suprise!)
Using the new H.P. Drivers it prints a test page with OS2 using CUPs but seems it's not capable of working using USB connection.
Anybody got any ideas?

Thanks  klipp

30
Hardware / Format 64gb Thumb Drive
« on: October 11, 2016, 12:34:31 am »
How do I Format a Scandisk 64gb Cruzer Blade Thumb Drive for jfs? I need it to backup a 63gb OS2 Partition (also jfs). I thought the eCS install CD would do it but no luck there.
Thanks for any ideas

klipp

Pages: 1 [2] 3 4 5