Linux MS DOS discussions
 help / color / mirror / Atom feed
* How to tell which dosemu version I have?
@ 2007-05-14 21:55 Larry Alkoff
  2007-05-14 22:32 ` Mike McCarty
  0 siblings, 1 reply; 6+ messages in thread
From: Larry Alkoff @ 2007-05-14 21:55 UTC (permalink / raw)
  To: dosemu, freedos-user

How to tell which dosemu version I have?

I _believe_ my version used to be 1.3.3.

For my new install of Kubuntu Feisty first copied over the old ~/.dosemu 
and then used apt-get dosemu
to install it.

aptitude -vv show dosemu
reports version 1.2.2.8

Is there any way to interregate dosemu itself to get it's version number?

Thanks, Larry

-- 
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: How to tell which dosemu version I have?
  2007-05-14 21:55 How to tell which dosemu version I have? Larry Alkoff
@ 2007-05-14 22:32 ` Mike McCarty
  2007-05-14 23:28   ` Larry Alkoff
  0 siblings, 1 reply; 6+ messages in thread
From: Mike McCarty @ 2007-05-14 22:32 UTC (permalink / raw)
  To: Larry Alkoff, linux-msdos

Larry Alkoff wrote:
> How to tell which dosemu version I have?
> 
> I _believe_ my version used to be 1.3.3.
> 
> For my new install of Kubuntu Feisty first copied over the old ~/.dosemu 
> and then used apt-get dosemu
> to install it.
> 
> aptitude -vv show dosemu
> reports version 1.2.2.8
> 
> Is there any way to interregate dosemu itself to get it's version number?
> 
> Thanks, Larry
> 

When I start up, I see the version number displayed.

Try this from command line:

C:> echo %DOSEMU_VERSION%

Mike
-- 
p="p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
Oppose globalization and One World Governments like the UN.
This message made from 100% recycled bits.
You have found the bank of Larn.
I can explain it for you, but I can't understand it for you.
I speak only for myself, and I am unanimous in that!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: How to tell which dosemu version I have?
  2007-05-14 22:32 ` Mike McCarty
@ 2007-05-14 23:28   ` Larry Alkoff
  2007-05-14 23:40     ` Bart Oldeman
  0 siblings, 1 reply; 6+ messages in thread
From: Larry Alkoff @ 2007-05-14 23:28 UTC (permalink / raw)
  To: Mike McCarty; +Cc: linux-msdos

Mike McCarty wrote:
> Larry Alkoff wrote:
>> How to tell which dosemu version I have?
>>
>> I _believe_ my version used to be 1.3.3.
>>
>> For my new install of Kubuntu Feisty first copied over the old 
>> ~/.dosemu and then used apt-get dosemu
>> to install it.
>>
>> aptitude -vv show dosemu
>> reports version 1.2.2.8
>>
>> Is there any way to interregate dosemu itself to get it's version number?
>>
>> Thanks, Larry
>>
> 
> When I start up, I see the version number displayed.
> 
> Try this from command line:
> 
> C:> echo %DOSEMU_VERSION%
> 
> Mike



Thanks very much Mike.  The echo statement worked and I have logged it 
into my dosemu.nfo file.  It's good information.

echo %DOSEMU_VERSION% reported 1.3.3.0 but that doesn't square with the 
fact that I used apt-get to load 1.2.2.8.

Any idea which file the version number comes from?

Larry

-- 
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: How to tell which dosemu version I have?
  2007-05-14 23:28   ` Larry Alkoff
@ 2007-05-14 23:40     ` Bart Oldeman
  2007-05-15  0:14       ` Larry Alkoff
  0 siblings, 1 reply; 6+ messages in thread
From: Bart Oldeman @ 2007-05-14 23:40 UTC (permalink / raw)
  To: Larry Alkoff; +Cc: Mike McCarty, linux-msdos

On 5/14/07, Larry Alkoff <labradley@mindspring.com> wrote:

> Thanks very much Mike.  The echo statement worked and I have logged it
> into my dosemu.nfo file.  It's good information.
>
> echo %DOSEMU_VERSION% reported 1.3.3.0 but that doesn't square with the
> fact that I used apt-get to load 1.2.2.8.
>
> Any idea which file the version number comes from?

You may have two dosemu's (and dosemu.bin's) installed, one, 1.2.2-8,
in /usr/bin and the other one, 1.3.3, in /usr/local/bin, and
/usr/local/bin comes first in your $PATH.

Bart

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: How to tell which dosemu version I have?
  2007-05-14 23:40     ` Bart Oldeman
@ 2007-05-15  0:14       ` Larry Alkoff
  0 siblings, 0 replies; 6+ messages in thread
From: Larry Alkoff @ 2007-05-15  0:14 UTC (permalink / raw)
  To: Bart Oldeman; +Cc: Mike McCarty, linux-msdos

Bart Oldeman wrote:
> On 5/14/07, Larry Alkoff <labradley@mindspring.com> wrote:
> 
>> Thanks very much Mike.  The echo statement worked and I have logged it
>> into my dosemu.nfo file.  It's good information.
>>
>> echo %DOSEMU_VERSION% reported 1.3.3.0 but that doesn't square with the
>> fact that I used apt-get to load 1.2.2.8.
>>
>> Any idea which file the version number comes from?
> 
> You may have two dosemu's (and dosemu.bin's) installed, one, 1.2.2-8,
> in /usr/bin and the other one, 1.3.3, in /usr/local/bin, and
> /usr/local/bin comes first in your $PATH.
> 
> Bart


Bart you are absolutely right - there were two dosemu.bin's.

I've moved the files in /usr/local/bin to /usr/local/bin/old because 
they wouldn't start dosemu.

The grep 1.2 /usr/bin/dosemu.bin produces several hits of visible 1.2 in 
the text portions (I realize . matches any character)
and grep 1.3 produces no hits.

So I indeed have 1.2.2.8 which is what apt-get reported.

Whenever 1.4 comes out in a deb file I'll try that but for now I'm 
pretty happy.

I regularly run a number of DOS programs - Supercalc (spreadsheet), 
Wordstar and Q&A.  I especially use a lot of SC because my fingers know 
what to do without thought!

Thanks toboth of you for helping.

Larry

-- 
Larry Alkoff N2LA - Austin TX
Using Thunderbird on Linux

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: How to tell which dosemu version I have?
@ 2007-05-15  2:29 Mike McCarty
  0 siblings, 0 replies; 6+ messages in thread
From: Mike McCarty @ 2007-05-15  2:29 UTC (permalink / raw)
  To: linux-msdos

Larry Alkoff wrote:
> Bart Oldeman wrote:
> 
>> You may have two dosemu's (and dosemu.bin's) installed, one, 1.2.2-8,
>> in /usr/bin and the other one, 1.3.3, in /usr/local/bin, and
>> /usr/local/bin comes first in your $PATH.
>>
>> Bart
> 
> 
> 
> Bart you are absolutely right - there were two dosemu.bin's.
> 
> I've moved the files in /usr/local/bin to /usr/local/bin/old because 
> they wouldn't start dosemu.
> 
> The grep 1.2 /usr/bin/dosemu.bin produces several hits of visible 1.2 in 
> the text portions (I realize . matches any character)

grep [.]

does not match any character.

If you want to know what you are actually executing, try

which command_name

On my system, I get

$ which dosemu
/usr/local/bin/dosemu

Mike
-- 
p="p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
Oppose globalization and One World Governments like the UN.
This message made from 100% recycled bits.
You have found the bank of Larn.
I can explain it for you, but I can't understand it for you.
I speak only for myself, and I am unanimous in that!


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-05-15  2:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-14 21:55 How to tell which dosemu version I have? Larry Alkoff
2007-05-14 22:32 ` Mike McCarty
2007-05-14 23:28   ` Larry Alkoff
2007-05-14 23:40     ` Bart Oldeman
2007-05-15  0:14       ` Larry Alkoff
  -- strict thread matches above, loose matches on Subject: below --
2007-05-15  2:29 Mike McCarty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox