1

I am running a windows 95 Virtual machine in virtualbox. I want to share a folder with it which is on the host machine. I have tried shared folders but they aren't supported without guest Additions. And windows 95 VM cannot also install the guest Additions. Is there any other way to share files with that?

2 Answers2

1

Yes, you can use the optical virtual CD rom of the Virtual machine. First download a tool named AnyBurn (http://www.anyburn.com/download.php). Tyen after installing, open it. Click create image from files/folders. Then add the files or folder and click next. Now choose ISO path and name. Then wait till ISO is created. When created start the virtual machine. Click Devices > hover on Optical Drive then click Choose disk image. Browse the ISO file and insert it. Then in windows 95, a message will come looking for SETUP.exe in the CD rom. Close it and open My Computer. Now right click the disk image and click Explore. That's it!

wasif
  • 9,176
1

To copy files to the virtual machine use a virtual CD or DVD, and to copy files from (and also to) the virtual machine use a virtual floppy disk. Before reading the steps below read first how to add virtual disks to your virtual machine.

Creating a CD image from files:

  1. Download InfraRecorder (portable version here) and run it.
  2. Click the Data Disc button to create a blank CD image (~700 MiB), or alternatively click the small DVD button next to it to create a blank DVD image (~4 GiB).
  3. Drag and drop files into the lower Disc Layout panel.
  4. Click the Actions menu > Burn Compilation > to a Disc Image... and choose where you want to save the resulting .ISO file.
  5. In VirtualBox, start your virtual machine then click the Devices menu > Optical Drives > Choose a disk file... and choose the previously created .ISO file. The virtual machine will now detect a CD/DVD containing your files.

Creating a floppy disk image:

  1. Start your virtual machine then click the Devices menu > Floppy Drives > Choose/Create a disk image...

  2. Click the Create button and set...

    • Filepath: where you want to save the resulting .IMG file.
    • Size: 1.44M
    • Format disk as FAT12
  3. The newly created image file will appear in the floppy disk list, click Choose. The virtual machine will now detect a blank floppy disk.

  4. Copy files from your virtual machine to the virtual floppy disk, then on your host OS open the .IMG file with 7-Zip and extract the files inside.

  5. You can copy files to the virtual floppy disk from the host by mounting the .IMG file.


Note: Linux virtual machines can accept virtual floppy disks of any capacity, for example you can attach a 3.93 MB .IMG file (the largest floppy accepted by VirtualBox) to a Linux virtual machine and it will not complain. You can then extract the .IMG file on a Linux host using LXQt Archiver.

Ben
  • 11