LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud
User Name
Password
Linux - Virtualization and Cloud This forum is for the discussion of all topics relating to Linux Virtualization and Linux Cloud platforms. Xen, KVM, OpenVZ, VirtualBox, VMware, Linux-VServer and all other Linux Virtualization platforms are welcome. OpenStack, CloudStack, ownCloud, Cloud Foundry, Eucalyptus, Nimbus, OpenNebula and all other Linux Cloud platforms are welcome. Note that questions relating solely to non-Linux OS's should be asked in the General forum.

Notices


Reply
  Search this Thread
Old 06-26-2022, 10:15 PM   #1
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Virtual Box: Old Windows for Cinepak test...


I have been working on creating a media files with Cinepak codec which would be playable on ancient versions of Windows (Cinepak was big in the 90s).

I have created a test file here:

https://www.andrews-corner.org/tmp/s...ad_low_fps.mov

with the following FFmpeg command line:

Code:
ffmpeg -i sintel_trailer_2k_720p24.y4m -i sintel_trailer-audio.flac \
       -c:v cinepak -q:v 1 -g 100 \
       -vf "scale=320:240:flags=lanczos:force_original_aspect_ratio=decrease,pad=320:240:-1:-1:color=black,fps=15" \
       -c:a pcm_u8 -ar 22050 -ac 1 \
       resize_pad_low_fps.mov
My stumbling block is to create a VM on my Ryzen computer running Slackware -current to test it out on. I have had only partial success with windows 3.11, Windows 95 and Windows 98. Better still would be access to an actual computer running these old versions, these now attract premium prices.

So 2 questions:
  1. Has anybody had big success with Virtual Machines of these old versions of Windows on a Ryzen build running Linux?
  2. Does anybody still have the hardware to check out this little video clip?

Thanks for any input...

Last edited by andrew.46; 06-26-2022 at 10:16 PM.
 
Old 06-27-2022, 03:52 AM   #2
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
I had no problems watching the clip with a current version of mpv on ArchLinux.

I don't think your hardware or host OS matters wrt old windows VMs.

The oldest I have installed personally is Win2000 (virtualbox), but I believe there are ready-made VM images available (legally) for older versions. Have you searched?

Quote:
Originally Posted by andrew.46 View Post
I have been working on creating a media files with Cinepak codec which would be playable on ancient versions of Windows (Cinepak was big in the 90s).

I have created a test file here:

https://www.andrews-corner.org/tmp/s...ad_low_fps.mov

with the following FFmpeg command line:

Code:
ffmpeg -i sintel_trailer_2k_720p24.y4m -i sintel_trailer-audio.flac \
       -c:v cinepak -q:v 1 -g 100 \
       -vf "scale=320:240:flags=lanczos:force_original_aspect_ratio=decrease,pad=320:240:-1:-1:color=black,fps=15" \
       -c:a pcm_u8 -ar 22050 -ac 1 \
       resize_pad_low_fps.mov
My stumbling block is to create a VM on my Ryzen computer running Slackware -current to test it out on. I have had only partial success with windows 3.11, Windows 95 and Windows 98. Better still would be access to an actual computer running these old versions, these now attract premium prices.

So 2 questions:
  1. Has anybody had big success with Virtual Machines of these old versions of Windows on a Ryzen build running Linux?
  2. Does anybody still have the hardware to check out this little video clip?

Thanks for any input...
 
Old 06-29-2022, 04:28 AM   #3
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Original Poster
Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Quote:
Originally Posted by ondoho View Post
I had no problems watching the clip with a current version of mpv on ArchLinux.
I would hope that there would be no problems: cinepak is an ancient video codec and the simple pcm audio should also cause no issues. My problem was to pare everything down so that an ancient operating system could play it back.

Quote:
I don't think your hardware or host OS matters wrt old windows VMs.
There is a known problem with Ryzen CPUs and older Windows, some discussion here...

Quote:
The oldest I have installed personally is Win2000 (virtualbox), but I believe there are ready-made VM images available (legally) for older versions. Have you searched?
You have helped me out there! I have tried Windows 3.11, 95 and 98 but after reading this I found an iso of Windows 2000 and this installed flawlessly and also played the Cinepak file nicely as well.

Older versions and ready made VM images have wasted hours of my time so I am happy with this result from iso...

Thanks!!
Attached Thumbnails
Click image for larger version

Name:	cinepak_success.png
Views:	6
Size:	98.8 KB
ID:	39187  

Last edited by andrew.46; 06-29-2022 at 04:29 AM.
 
2 members found this post helpful.
Old 07-06-2022, 04:59 PM   #4
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,463
Blog Entries: 7

Rep: Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561
Quote:
Originally Posted by andrew.46 View Post
There is a known problem with Ryzen CPUs and older Windows, some discussion here...
Wow, I didn't know about that. Thanks for posting about it.

Confirms what we've always known about Windows 9x... It's truly garbage. I have a Vbox VM with W98 here (9th gen i5), but it's certainly not used for anything serious. It doesn't properly support CPU scaling, so it's not unusual for the CPU usage to shoot up to 100% while that VM is running. As a direct result of that it doesn't get much use.

For 3.x, I've had reasonable success running it under DOSbox.

EDIT: I just spent far too much time going down a rabbit hole: Reading about the issues with Win9x on modern hardware. There certainly seem to be a lot of people who want this to work, and the issues are many.

Last edited by rkelsen; 07-06-2022 at 06:56 PM.
 
Old 07-07-2022, 12:13 AM   #5
andrew.46
Senior Member
 
Registered: Oct 2007
Distribution: Slackware
Posts: 1,365

Original Poster
Rep: Reputation: 493Reputation: 493Reputation: 493Reputation: 493Reputation: 493
Quote:
Originally Posted by rkelsen View Post
EDIT: I just spent far too much time going down a rabbit hole: Reading about the issues with Win9x on modern hardware. There certainly seem to be a lot of people who want this to work, and the issues are many.
I spent far too many hours as well! Windows 2000 worked easily and runs fast on VirtualBox so I have drawn a bit of a line there...
 
Old 07-07-2022, 03:13 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,008

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
I get the feeling that if your VM is too closely integrated to the host you could have issues. Plain old qemu should present a virtualized cpu where modern kvm and other VM's integrate the processor to the client. ??
 
Old 07-07-2022, 04:49 PM   #7
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,463
Blog Entries: 7

Rep: Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561Reputation: 2561
Quote:
Originally Posted by andrew.46 View Post
I spent far too many hours as well! Windows 2000 worked easily and runs fast on VirtualBox so I have drawn a bit of a line there...
If these problems stop people from using Win9x, then that's a good result. It belongs in the garbage bins of history.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Issues trying to install Virtual Box Guest Additions on RHEL v6.5 in Virtual Box JockVSJock Linux - Virtualization and Cloud 4 07-13-2015 09:14 PM
Load test, boundary test & stress test for USB EHCI/xHCI driver rama_toshiba Linux - Kernel 5 02-29-2012 02:43 PM
Slackware 13.37 and Virtual Box 4.1 / Virtual Box 4.012 chris_kzn Slackware 4 07-29-2011 01:51 AM
[SOLVED] Silencing the line "echo test > test/test.txt" in a shell script Arenlor Linux - General 2 06-18-2010 01:37 PM
Running virtual pc files in a virtual machine in linux ... preferably virtual box biharibong Linux - Software 4 01-21-2009 01:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Virtualization and Cloud

All times are GMT -5. The time now is 06:19 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration