Remix.run Logo
zerocrates 9 hours ago

I was one of those weird users who used the 64-bit version of Windows XP, with what I'm pretty sure was an Athlon 64 X2, both the first 64-bit chip and first dual-core one that I had.

bunabhucan 3 hours ago | parent | next [-]

We tried Windows 2000 Professional for the DEC Alpha for a GIS system in the late 90s. Suddenly made the $5000 PCs that could run it seem cheap.

chasil 3 hours ago | parent | next [-]

Unfortunately, NT for Alpha only ran in a 32-bit address space.

"The 64-bit versions of Windows NT were originally intended to run on Itanium and DEC Alpha; the latter was used internally at Microsoft during early development of 64-bit Windows. This continued for some time after Microsoft publicly announced that it was cancelling plans to ship 64-bit Windows for Alpha. Because of this, Alpha versions of Windows NT are 32-bit only."

https://en.wikipedia.org/wiki/Windows_NT#64-bit_platforms

antod 2 hours ago | parent | prev [-]

Alpha support was removed in one of the later NT5 betas right? Makes sense that it would've been late 90s then, before it was renamed Windows 2000 for release.

speed_spread 7 hours ago | parent | prev [-]

XP64 shared a lot with Windows Server 2003. Perhaps the best Windows ever released.

seabrookmx 5 hours ago | parent [-]

Did 2003 have symlinks?

7 and 2008R2 were pretty good too. All downhill from there..

jborean93 4 hours ago | parent [-]

It had junction points and hard links but symbolic links were added in Vista/Server 2008.

chasil 3 hours ago | parent [-]

This seems odd, as there was a POSIX layer in Windows from the beginning, and I can't see how it could do without symbolic links.

https://en.wikipedia.org/wiki/Microsoft_POSIX_subsystem

jborean93 3 hours ago | parent [-]

No idea if the POSIX subsystem used NTFS or some other filesystem but if it was NTFS it probably just used the same reparse data buffer. It's just that Windows only added a symlink buffer structure in Vista/2008. You can manually use the same data buffer in older Windows versions it just won't know what to do with them just like all the other reparse data structures.

chasil 3 hours ago | parent [-]

So the "reparse data buffer" would be able to implement symlink() as a POSIX system call?

https://pubs.opengroup.org/onlinepubs/009695299/functions/sy...

jborean93 2 hours ago | parent [-]

The subsystem in question would be the one to handle the logic for the syscall. So the POSIX subsystem would use the reparse data buffer as needed. It's just that the Win32 subsystem added its own symlink one in Vista/2008.

This is all a guess, the POSIX subsystems were a bit before my time and I've never actually used them. I just know how symlinks work on Windows/NTFS and when they were added.