X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: Rugxulo Newsgroups: comp.os.msdos.djgpp Subject: Re: VIRTUAL BOX and my GAME - Mr Rod Pemberton Date: Sun, 6 Feb 2011 17:53:06 -0800 (PST) Organization: http://groups.google.com Lines: 48 Message-ID: <86d01ce5-a399-4b3b-ad04-6b7ee5c5270e@k16g2000vbq.googlegroups.com> References: <498237 DOT 24575 DOT qm AT web45109 DOT mail DOT sp1 DOT yahoo DOT com> <70707 DOT 13859 DOT qm AT web45115 DOT mail DOT sp1 DOT yahoo DOT com> <4A5599562C2F4B66962290DD126AB376 AT KAIN> NNTP-Posting-Host: 65.13.115.246 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1297043587 30184 127.0.0.1 (7 Feb 2011 01:53:07 GMT) X-Complaints-To: groups-abuse AT google DOT com NNTP-Posting-Date: Mon, 7 Feb 2011 01:53:07 +0000 (UTC) Complaints-To: groups-abuse AT google DOT com Injection-Info: k16g2000vbq.googlegroups.com; posting-host=65.13.115.246; posting-account=p5rsXQoAAAB8KPnVlgg9E_vlm2dvVhfO User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10,gzip(gfe) Bytes: 3055 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hi, On Feb 6, 1:18=A0pm, "Matthew Petricone" wrote: > > It's probably not what you are used to. Under DOS in virtual box you > probably do not have access to your actual hard drive. While there is a > shared folder system, it dos not work under DOS. I think?? (but never tested) that MS "NET USE" or "NET SHARE" or whatever gobbledegook might work under VirtualBox, but I have no idea how. EDIT: http://forums.virtualbox.org/viewtopic.php?f=3D30&t=3D33357 > I think the easiest way is > to make a ISO of the data you want, and mount that under virtual box as a > CD, then copy it to your VHD. > > Hope that helped, > Matt DOSEMU on Linux would be easier (in theory). However, in the interest of facilitating this line of thinking (though again I haven't tried it lately), you can get a DJGPP build of MKISOFS.EXE from here: http://alexfru.narod.ru/os/fat/fat.html And here's a rough example of its use (hopefully self-explanatory): ---------------------------------------------------------------------------= --- I used the new MKISOFS command line suggested in our Wiki: mkisofs -R -D -V "FreeDOS 1.0" -o ~/fdbasecd-remastered.iso \ -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot \ -boot-load-size 4 -boot-info-table /tmp/fdbasecd-contents/ ...to make an ISO of fdbasecd of FreeDOS 1.0 which now does boot on my PC. The previous version just got stuck when it tried to load ISOLINUX. Which was, uhm, not so convenient. Eric PS: The isolinux/isolinux.bin file in my tmp directory had to be writeable to make the "remastering" work, so I had to make a real tmp copy of the old cd, not just mount it... ---------------------------------------------------------------------------= ---