Slashdot Mirror


Mounting .ISO's Into An NT File System?

haplo21112 asks: "We all know how to mount an ISO image into the Linux file system: mount -t iso9660 -o loop image.iso /mnt/isoimage. Unfortunately the rather large software distribution server I am stuck with here at work is 2000 based, but we would love to replicate this functionality somehow on the NT System. I have done many Google searches to find a way of doing this and come up empty. There seem to many utilities that will mount the .ISO as a 'virtual' CD rom drive, but this doesn't really solve the problem since we are talking about mounting something on the order of 200 .ISO images this way. I am looking to replicate the Linux functionality, create a directory, and mount the ISOs as subdirectories."

63 comments

  1. here's your solution... by Anonymous Coward · · Score: 0

    use linux.

    my god, that was simple.

  2. SMB shares under Linux on a separate box? by renehollan · · Score: 1, Informative
    This probably isn't exactly what you want, and I am by no means an expert when it comes to SBB, but couldn't you use a Linux box, and Samba to export SMB shares of loopback mounted .iso images?

    At least your Windows boxen would see them, no?

    --
    You could've hired me.
    1. Re:SMB shares under Linux on a separate box? by mini+me · · Score: 1

      I've done this before for a CD image I didn't want to burn. I just put it on my Linux server, did the regular mounting of the ISO file system and then viewed it via Samba.

      It shows up just like the CD would, or any other network drive for that matter. It worked for me. I would recommend this route!

    2. Re:SMB shares under Linux on a separate box? by haplo21112 · · Score: 2

      NO....we have 200GB on the Windows box, they will NOT buy another box nor will our datacenter(whom all servers must be supported by due to 24/7/365 requirements) support any OS by Windows.

      --
      Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
    3. Re:SMB shares under Linux on a separate box? by renehollan · · Score: 2
      Lesse... 200 CDs is what, 130-140 GB?

      Two one hundred gig ATA/100 ide drives (yeah, SCSI would be better) would run about US$450... A box to put them in, say $500. Under $1000 plus the time to install and config Linux and Samba. Let's be pessimists and say its $5000 all added up.

      I bet you guys wasted more than that already looking for a Windows solution.

      Methinks you work for morons. I know, I used to.

      --
      You could've hired me.
    4. Re:SMB shares under Linux on a separate box? by Ratbert42 · · Score: 1

      Not to be a VMWare pimp, but VMWare could be a fit. You'd still run something (Linux) unsupported by your datacenter, but that doesn't sound like a big loss.

    5. Re:SMB shares under Linux on a separate box? by TangoCharlie · · Score: 1

      Yes, this works. I made a 10-CD cd jukebox from a linux box with an old 8G hard disk.... running Samba.
      Even more amazing... my CD Juke Box didn't even have a CD-ROM drive :-)

      --
      return 0; }
    6. Re:SMB shares under Linux on a separate box? by renehollan · · Score: 2
      Yeah, if the datacenter folks won't support you, and you are afraid to support yourself, and "running Windows" is mandatory, I suppose VMware would be a social hack to make this "acceptable".

      However...

      Realize that you still have the Linux support problems which likely make you fear it in the first place, plus the need to support vmware as well.

      You clearly are operating under a policy where you can't get the help you need and don't have confidence in your own skills in the area to be self-sufficient. Neither of these is meant as a disparaging comment on it's own (no one knows everything, after all), but it does mean that your support policies are insufficient to meet your real-world needs. Ignoring these real world needs as "real", in favour of simplifying your data center's support requirements strikes me as rather stupid, or at least nearsighted, though I don't know on who's part.

      Really, loopback-mounting the .iso images on a Linux box that serves up SMB shares, using Samba, is probably the easiest way to get this done -- you're not running a changing or complex environment on the Linux box, you're simply serving files, so stability should not be a major problem. You're also in luck, as many, many others have "snuck" Samba on Linux into operational environments when faced with problems such as yours, generally with a positive experience.

      So, I stand by my suggestion: install a minimal Linux distribution, with Samba (Red Hat should do fine). Duplicate over another machine if you worry about hardware failures. Experience suggests that this really does result in the lowest TCO -- this isn't bleeding edge Linux stuff.

      --
      You could've hired me.
    7. Re:SMB shares under Linux on a separate box? by Gordonjcp · · Score: 2

      Really, it doesn't sound like your datacentre can be up to much if they only support Windows. I'm not playing the Linux zealot here, but if they *refuse* to play nicely, you should pull your servers and get them in somewhere decently clueful.

      Using Samba, and mounting the images with the loopback filesystem, is really the only sensible way to do this. It's quick, it's cheap, and it *works*. Leave politics out of it. This is a job that *nix (Linux, BSD etc) excels at. Windows is great on the desktop, but it's just not capable of handling this.

      Think about it - if you needed a hole dug, you'd use a spade. If you needed a big hole dug, you'd use a JCB. No amount of politicking is going to make the spade dig a big hole as fast as a JCB.

  3. Suggestion: 'subst' by Leif_Bloomquist · · Score: 1

    Why not mount them as virtual drives (as with the utilities you found) and then use the SUBST command to map that virtual drive into a subdirectory?

    (Disk Management lets you do this too.)

    You'd have to get fancy to get past 26 drive letters though, maybe a batch file to switch in the .iso's needed?

    C:\>subst /?
    Associates a path with a drive letter.

    SUBST [drive1: [drive2:]path]
    SUBST drive1: /D

    drive1: Specifies a virtual drive to which you want to assign a path.
    [drive2:]path Specifies a physical drive and path you want to assign to
    a virtual drive.
    /D Deletes a substituted (virtual) drive.

    Type SUBST with no parameters to display a list of current virtual drives.

  4. Norton Virtual CD + Drive Mapping in Win2k by DeMorganLaw · · Score: 4, Informative

    I got a free copy of norton virtual drive with my last motherboard, it copies the contents of the CD and stores them as a fake partition. As far as I know win2k also will let you mount/map... a partition as a directory onto another drive partition. However I don't know what kind of partition Norton makes the virtual drives, if they are fat, kinda screwed in a 2K enviormentl. No permissions and doubt you can map them to a folder. My $0.02

    1. Re:Norton Virtual CD + Drive Mapping in Win2k by DeMorganLaw · · Score: 1

      Cygwin might work too.

  5. Why not copy contents of CDs to directories? by Anonymous Coward · · Score: 1, Insightful

    Why do you need to mount ISOs, rather than just copy the contents of the CD to a subdirectory?

    That almost seems like a backward way to do it, unless you were anticipating installing these ISOs on a Linux system.

    1. Re:Why not copy contents of CDs to directories? by DrSkwid · · Score: 1

      here's one :

      download an ISO

      and you want to install via FTP and the only box you have available is nt

      been there, done that

      --
      There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    2. Re:Why not copy contents of CDs to directories? by Ratbert42 · · Score: 2

      You can use WinImage or other tools to extract the iso. Also, the latest version of VMWare mounts iso files as virtual drives. I don't think either of these help the original poster though.

    3. Re:Why not copy contents of CDs to directories? by jquirke · · Score: 1

      Because you may want to keep the original ISO, but extracting it would waste double the necessary space, as well as possibly lose information ISO-only.

      So he wants to be able to access the contents of the ISO without the waste of time and disk space of extracting it.

    4. Re:Why not copy contents of CDs to directories? by haplo21112 · · Score: 2

      We are often given the ISO images from the start, and not te CD's nd there are frequent changes to the contents of the ISO's. There for easier to mount unmount with the new editions.

      --
      Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
  6. daemon toolz by DrSkwid · · Score: 1

    the old version worked

    i tried the new one last week with freebsd 4.4 iso's and it failed though

    --
    There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    1. Re:daemon toolz by BRTB · · Score: 2, Interesting
      Daemon Tools, while definitely a useful program even without the cd-lock emulators, can only appear as a maximum of 4 virtual drives. The submitter needs much more (>= 200).

      Actually I could use something like this as well, since the infamous Microtest/xStore machine still doesn't work right - never did get any of the code from them - and the school netadmin isn't going to have a clue how to work the samba-sharing-loop-mounts linux server after my contract runs out.

  7. Windows 2000 directory restructuring by man_ls · · Score: 3, Informative

    Windows 2000 has a lot of directory restructuring tools available for you.

    SUBST, JOIN, and the like tools from old-school MS DOS let you map directories to drive letters and vice versa.

    Windows 2000 also includes a copy of what is, pretty much, Vetrias Voulme Manager, used for making software RAID arrays (called "Dynamic drives") and such. Maybe you could use it (It's found in Administrative Tools>Computer Managment) to do something of that nature. There's a LOT of options about removable media, media pools, and volume management there.

    Also check in the MSKB. It's actually helpful if you know what you're looking for.

    1. Re:Windows 2000 directory restructuring by haplo21112 · · Score: 3, Informative

      Been there done that in both cases.
      The MSKB and technet got a good three over, by myself and 4 other people in my group....MS simply does not support this....

      --
      Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
    2. Re:Windows 2000 directory restructuring by Anonymous Coward · · Score: 0

      We need to avoid drive letters altogether. Drive letters are stupid. Drive letters suck. There are only 26 drive letters. We have over 200 images we need to mount simultaneously. We do not have 200 drive letters.

      What Windows 2000 tools allow us to take a virtual filesystem in an image file (such as 'c:\images\disc1.iso'), without expanding the file, and mount it as a folder (say, c:\library\disc1\) under another filesystem (say, NTFS)?
      I think THAT is the question.

  8. Virtual CD by Oily+Tuna · · Score: 2, Interesting

    Microsoft have one - vcd.exe is the installer.

    2-10-2000 18:25 24,064 VCdControlTool.exe
    2-10-2000 18:05 11,296 VCdRom.sys


    I can't remember how I got it though - possibly the Windows XP beta program.

    --
    Mmmmmmm ... sushi.
    1. Re:Virtual CD by Oily+Tuna · · Score: 1

      Forgot to say ... once you've mounted the ISO, you set up a mount point to the directory you want to mount them under.

      --
      Mmmmmmm ... sushi.
    2. Re:Virtual CD by toast0 · · Score: 2

      i got my copy of that through xp beta

      windows isn't quite as bad when its free :)

    3. Re:Virtual CD by haplo21112 · · Score: 2

      I have that running on the server in qestion, back to the same basic problem...26, well really 22 drive letters....200 CD's and this driver needs to mount them as a letter...the driver is also, beta, unsupported, and somewhat unstable....

      --
      Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
    4. Re:Virtual CD by Oily+Tuna · · Score: 1

      You don't need a drive letter - create a mount point to the volume by volumename, not drive letter.

      --
      Mmmmmmm ... sushi.
    5. Re:Virtual CD by haplo21112 · · Score: 1

      Unless your version is different than mine it doesn't seem allow doing this...as far as I can see...if you can tell me how...I'd love to know...

      --
      Power Corrupts,Absolute Power Corrupts Absolutely, leaving one person(group)in charge is absolutely corrupt.
  9. Why ISOs by tunah · · Score: 1
    You probably have good reasons to use ISOs, but if you dont (:D) why not grab a linux box, mount the isos to /isos/isoXX, share /isos with samba and copy everything across?

    700MB * 200 ISOs = 140GB

    140GB / 1 Gb/sec = 19 min.

    --
    Free Java games for your phone: Tontie, Sokoban
    1. Re:Why ISOs by Anonymous Coward · · Score: 0

      1GB a second accessing 140GB would equal 2+(2/6) minutes.

    2. Re:Why ISOs by freebase · · Score: 1

      Actually, assuming 60% transfer efficiency, adding ethernet header, ip, tcp headers, it would take closer to 32 minutes to move the data:

      ((140GB*8)/.6)/1Gbps/60=31.1 minutes

      --
      Sig??? I don't need no stinkin Sig!
  10. Nero - by Ahead software has this capability by seigniory · · Score: 5, Informative

    Aside from being one of the best pieces of software to burn CS (and so much more), NERO by Ahead Software

    http://www.nero.com/en/function.htm

    Has a SCSI/Image interpreter that mounts .iso images as drives on your Win32 system.

    1. Re:Nero - by Ahead software has this capability by Anonymous Coward · · Score: 0

      I assume you work for Nero otherwise you woulded say that

    2. Re:Nero - by Ahead software has this capability by seigniory · · Score: 1

      Nope, just a satisfied customer.

    3. Re:Nero - by Ahead software has this capability by Anonymous Coward · · Score: 0

      Need to avoid drive letters altogether. Mounting .iso images as drives WILL NOT WORK because we need over 200 images mounted at the same time and we have only 23 drive letters to spare (a:, c:, and d: are probably taken).

    4. Re:Nero - by Ahead software has this capability by seigniory · · Score: 1

      My only other suggestion might be to use UNC names on multiple servers -- you'd use the ISO image as a drive on say 20 different servers, and then have users use the UNC name:

      \\server01\d$
      \\server01\e$
      ..
      ..
      \\server10\z$

      at least you'd have them all accessable at once. Requires a few servers, though (but minimal resources on those servers)

      Just a thought...

    5. Re:Nero - by Ahead software has this capability by seigniory · · Score: 1

      Wait - what was I thinking -

      Use the Win2k DFS (Distributed File System) - mount the drive then unassign the drive letter. Then mount each raw drive as a distinct folder in the DFS tree. Requires a native Win2k domain, though.

      A simpler approach would be to bypass DFS and go with the standard "map this drive to a subfolder of drive :)"

    6. Re:Nero - by Ahead software has this capability by seann · · Score: 0

      Well I always assumed Windows was half decently smart and used these following when you ran out:
      AA:
      BB:
      CC:
      DD:
      EE:
      FF:
      GGGGGGGGGGG:

      --
      I'm a big retard who forgot to log out of Slashdot on Mike's computer! LOOK AT ME.
  11. build an ISO server by cr@ckwhore · · Score: 4, Informative

    Interesting topic, because I was just thinking about this the other day. I'm planning on building an ISO server, and you should consider the same.

    The server will be based on Linux, and have plenty of disk space to hold the large number of ISO files. I'd write a script that would read a directory listing and mount all ISO files via the /dev/loopN and iso9660 support.

    From there, the ISO mount points are going to be accessible via an SMB (Samba) share.

    This will allow users on the network to use their "Network Neighborhood" or "Computers Near Me" interfaces to browse the files. In fact, most users will probably never know about the ISO files, nor will they know that they're browsing a linux machine. Its going to be ultra transparent.

    --
    Skiers and Riders -- http://www.snowjournal.com
  12. An explanation by Webmoth · · Score: 5, Interesting

    You've got it backwards. The poster wants to mount some 200 images as folders, not drive letters. SUBST isn't going to help him.

    For example, disc 1 would be a file such as c:\images\disc1.iso and be mounted as c:\library\disc1\ ; disc 2 would be c:\images\disc2.iso mounted as c:\library\disc2\ and so on. Basically, the single *.iso file is an entire file system (read: disc) squashed into a file and sitting on another file system.

    By way of explanation, file system images are individual files representing a disk partition. They are as if you were to take the data off of a disk bit by bit, in sequence, with all partition information, file tables, etc., and put it into a file. This image can be ISO, FAT, NTFS, VFAT, FAT32, EXT2, EXT3, whatever format you can think of. You can have a FAT32 filesystem residing within an NTFS filesystem. With a proper operating system, you can mount this "virtual filesystem in a file" as a filesystem. In UNIX type OS's, there are no drive letters, but the filesystem can be mounted to a directory. In Microsoft-type OS's, every filesystem is mounted as a drive letter rather than a directory, which inherently limits you to a maximum of 26 simultaneously mounted "drives." The UNIX limitation is much higher.

    In the days of DOS, it was found that some programs work best if their folders were in the root directory of some drive. Unfortunately, this made for a very cluttered root directory. A workaround was implemented: SUBST allows you to mount a directory as a virtual drive letter, letting the program have it's own root directory, while allowing the user to "sort out" his hard drive by having directories for programs, etc.

    DOS and Windows have never had native support for mounting partitions as directories; this support IS available (finally) under Windows XP. Mounting image files as folders is uniquely UNIX-like; I don't know if XP supports this or not.

    --
    Give me my freedom, and I'll take care of my own security, thank you.
    1. Re:An explanation by nosferatu-man · · Score: 3, Informative

      Support for mounting filesystems as directories is an NTFS feature, and was available in NT 5.0 (Windows 2000).

      Peace,
      (jfb)

      --
      To spur "enterprise Linux," Big Bang, the distributed two-phase commit.
    2. Re:An explanation by Webmoth · · Score: 2

      Thanks. I realized my mistake after hitting "submit." :-P

      --
      Give me my freedom, and I'll take care of my own security, thank you.
  13. Links by Webmoth · · Score: 5, Informative

    You may find the following Microsoft Knowledge Base articles informative, if not the answer to you questions:

    How to Create and Manipulate NTFS Junction Points (Q205524)
    http://support.microsoft.com/default.aspx?scid=k b; EN-US;Q205524

    How Single Instance Storage Identifies Which Volumes to Manage (Q226545)
    http://support.microsoft.com/default.aspx?scid=k b; en-us;Q226545

    Dynamic vs. Basic Storage in Windows 2000 and Windows XP (Q175761)
    http://support.microsoft.com/default.aspx?scid=k b; EN-US;Q175761

    (Be sure to remove spaces in the URLs. The slashcode on slashdot has a bug that inserts spaces in long words.)

    I think that Windows 2000/XP may not support filesystems that are not seen as physical volumes (partitions) or logical volumes on a dynamic partition. I have not been able to find anything that indicates file-based filesystem images are supported.

    --
    Give me my freedom, and I'll take care of my own security, thank you.
    1. Re:Links by Anonymous Coward · · Score: 0

      It's not a bug. Long words would cause horizontal scrolling in low resolutions (cardinal sin, apparently). If you don't want URLs to break just put them as links.

  14. Run Linux in VMWare by Spock+the+Vulcan · · Score: 1

    Since you said you cannot dedicate a machine to Linux, just install a barebones distro under VMware on your Win2K machine. Export the ISO files through Samba so that the Linux guest OS can see them, mount them on loopback, and re-export the mounted directories over Samba. Very back-ass-wards, but if you have a reasonably powered machine, it will work.

  15. Money talks by Webmoth · · Score: 2

    I think you may have an uphill battle here. As far as I know, Win2K expects a filesystem to be either a physical partition or on a Windows 2000 dynamic disk. I don't think it knows how to handle image files.

    There may be a third-party utility which allows this. I don't know what it is.

    Your best bet may be (impossible, but who knows...) to convince the powers-that-be that the only way to implement this is using *nix/Samba and that the Total Cost of Ownership will be less than the TCO of the current implementation.

    If the TCO is more than what you're doing now, consider the proposal toilet paper.

    Remember that TCO includes not only the cost of implementation, but productivity issues as well. If productivity is sufficiently increased, then TCO will be lower than it currently is.

    You mentioned that the datacenter only supports Windows 2000. In my opinion, that is short-sighted, but that is a topic for another flameb^H^H^H^H^H^H story.

    --
    Give me my freedom, and I'll take care of my own security, thank you.
  16. Not a bug, a feature (Was: Re:Links) by Papineau · · Score: 0

    Actually, the spaces inserted in long words is a feature of Slashcode, not a bug.
    Not sure which version of Slashcode Slashdot is running at the moment, but in version 2.2, the default value of MAX_WORD_LENGTH, in function breakHTML, is 50 (according to both comments in Slash/Utility/Data/Data.pm AND the code there). After previewing this comment, I can assure you it's the same thing on Slashdot.
    If you wanted to entirely avoid the extra spaces, you could just have put the URLs in plain <A href="link">link</A> tags, and your research would have been more easily reused by others. By the way, attributes in HTML tags are not cut the way described above.
    But the word boundaries in Slashcode could include dashes also, rather than only spaces. It would be easier to describe-things-that-takes-so-many-attributes-you- don't-remember-what's-at-the-beginning...

  17. 3rd party utility by dpu · · Score: 3, Informative

    it's called ISOBuster. www.isobuster.com. it supports an obscene number of image formats, reads all kinds of discs... the list goes on. i'm not sure if it can mount an image as a folder or drive letter, but the guy who wrote the app has a few other utilities... maybe one of them will help too.

    --
    Dammit, I meant to post that anonymously!
  18. Two Products by danFL-NERaves · · Score: 5, Informative
    There are at least two products which let you mount ISO files as volumes under NT/2000/XP.

    1. DAEMON Tools (currently v2.88)

    2. FarStone Tech's Virtual Drive (currently v6.2)

    My recommendation is DAEMON Tools. It is a quick and dirty freeware solution which has proven rock solid on my systems. It mounts ISO and a variety of other CD image file types as lettered drives. It's really built for use on a workstation but once the drives are mounted they can be shared like any other normal drive. (Tools to create CD images are not included.)

    Virtual Drive (Network Edition) is commercial software and comes in a variety of languages. It has a prettier interface and includes CD management tools (ISO creation). Personally it didn't impress me but YMMV.

    1. Re:Two Products by Anonymous Coward · · Score: 0

      I just TESTED this with windows 2000 and DAEMON Tools.

      -Mounted a .iso file as the DAEMON tools virtual CDROM
      -Created a folder called c:\fakecd
      -Opened the disk management utility in MMC
      -Removed the drive letter mapping of the DAEMON tools virtual CDROM
      -Added a mapping of the virtual cdrom to the path c:\fakecd

      C:\fakecd appears to contain the ISO filesystem as you would expect.

      The only problem is that the most recent version of daemon tools only supports 4 virtual drives.

  19. Daemon by kfs27 · · Score: 1

    there is some windows app out there called Daemon...it mounts images as a scsi drive and gives them a letter as if it was a cd...works great for me

    --
    Kenny Sabarese
    www.kennysabarese.com
    1. Re:Daemon by ThatComputerGuy · · Score: 2

      You must mean DaemonToolz.

      --
      XML is like violence. If it doesn't solve the problem, use more.
  20. think application layer instead by Anonymous Coward · · Score: 0

    Not sure what your trying to do exactly here but you should probably think more about doing something like this at the application layer. If your making a ISO server then let the user select and ISO to Browse and have some code to then let them browse through the ISO an download individual files from it. I'm sure you could find some code examples that can read files in an .ISO if you look around. I'm not sure what kind of server your running but if you used IIS you could make an ASP component to read/browse the ISOs and a ASP script to call the component and display the results. Sometimes you just have to adjust your way of thinking to solve problems, NT isn't unix and vice-versa after all.

  21. How about using partitions...or even DFS... by NOT-2-QUICK · · Score: 3, Informative

    This may or may not be feasible as I have never attempted such a thing (I have no need for 200+ ISO's)... Essentially, I am aware of two technologies within win2k/ntfs that may allow for such a configuration as I believe that you are looking for.

    First, a functionality exists in win2k through which to mount drive partitions as folders... Unlike the idea of using subst & such, this is not constricted by the magic number of 26 drive letters. Simply identify/create the partitions (logical, extended, dynamic, physical drives whatever...) and edit the properties to have them mounted as folers. The ISO's could then be stored in partitions/drives mounted as folders with appropriate names. More can be gleamed on this topic by reading this Microsoft article at Technet.

    A second alternative, that while being more complicated may provide for greater flexibility would be to implement DFS (Distributed File System). Through this package you can map ANY drive/partition on any workstation to appear as a shared folder on a server. As the name suggests, this would allow for a more distributed strategy that would allow you to leverage several machines in distributing your ISO's. More can be read on DFS at this site...

    I hope this information proves to be useful for you and that I am not misunderstanding you intentions!!! As many others have pointed out, Linux would far and away be a better, more compact solution; however, like you I am saddled with the responsiblity of working at a Microsoft centric company...and for the record - IT SUCKS!!!

    --
    Beer is proof that God loves us and wants us to be happy. -- Benjamin Franklin
  22. It has a bug though by CTho9305 · · Score: 1

    Some jerk has been replying with plaintext posts, which doesn't turn the a href into a link, but slash sees the href and doesn't break up the line. sample:
    <a href=this.could.be.really.really.long>blah</ a>

    err, maybe not plaintext, but "Code"

  23. An aside by Rick+the+Red · · Score: 1, Redundant
    You'd have to get fancy to get past 26 drive letters though,
    Interestingly enough, in MS-DOS 1.0 you could have 64 block devices. M$ reduced the number to 26 in MS-DOS 2.0 (and then, in perhaps the first known example of their arrogance, claimed that DOS 2 was fully upward compatible with DOS 1) because they couldn't figure out how to identify numbers 27 through 64. I guess they didn't understand ASCII.

    Besides, who on earth would want more than 26 block devices? [Uh, maybe the same folks who would want more than 640k of RAM? Naaah.]

    So now, as then, if you want something out of the ordinary (i.e., something useful) don't use Micro$soft products. I think the suggestion of using Samba on Linux under VMWare to serve the ISO images to the host W2K box is your best bet.

    --
    If all this should have a reason, we would be the last to know.
  24. Try cygwin by SanLouBlues · · Score: 2

    I don't have .iso's to test this on, but in cygwin mount so far looks just like I'd excpect. This may only mount your iso's in the cygwin directory structure though, in which case you'd need to run samba or something like that in cygwin. Samba on windows! Ha! That'd suck if that's the best solution. . .

  25. Hey Good windows utility for browsing ISO right V by t0qer · · Score: 1

    Thoust shall clicketh http://galway.informatik.uni-kl.de/staff/mandola/o pus.html And download this free program. It allows for full browsing of many image file types. Enjoy!

  26. or use VirtualPC for Windows by extra88 · · Score: 1
    VMWare and VirtualPC for Windows exist to solve the same problems. If you can get away will running Linux in a virtual machine, those are your choices. The appeal of VirtualPC is 1) made by a "name" company who have lots of experience doing the even harder task of hardware emulation on a different processor (which could appease the "datacenter" people) and 2) configuration is a lot simpler. Since Connectix released the 4.2 patch, which fixed the screwed up "virtual switch" (lets you assign an IP to the guest OS instead of sharing the host's IP behind a NAT), VirtualPC has been pretty good.

    I like the sound of using a cygwin-based solution even better but if it's possible, I don't know how to do it.

  27. loopback devices under linux... by Mysticalfruit · · Score: 1

    I know this is a bit off topic (I'm not sure how you'd go about loopback mounting an iso image under NT) but under linux, you'd have to do some recompiling, I'm pretty sure the default install only allows 8 or so loopback devices.

    Granted its a quick recompile, but it sure wrecks uptime...

    --
    Yes Francis, the world has gone crazy.
  28. Re:Hey Good windows utility for browsing ISO right by Anonymous Coward · · Score: 0

    What you of course meant was, "Thou shalt...." "Thou" being the singular second person and "shalt" being the correct conjugation of "shall" for singular second person.

  29. Why are we being asked to enhance M$ NT's value? by slashdot_commentator · · Score: 2


    Timothy, are you being asked by your employers to include more NT issues, or are you looking to bail out of /. soon with an NT job?

    The question posed does not help Linux penetrate a technical market niche; it helps give NT a functionality that Linux already has.

    If you are running out of good "Ask Slashdot" submissions, please let us know. I could probably fire off 10 good ones if I knew the effort I expended would be worthwhile.

    --
    There is no America. There is no democracy. There is only IBM and AT&T and DuPont, Dow, General Electric, and Exxon