Allegro NFS Server for Windows
Table of contents
- Introduction
- Installation
- Configuration
- Release Notes
- Implementation Notes
Introduction
The repo contains the source code for Allegro® NFS Server for Microsoft
Windows®, written in Allegro Common Lisp. The author is Ahmon Dancy,
with help from Elliott Johnson, Kevin Layer, and Jeremiah Rothschild.
It was inspired by our dissatisfaction with current free and
commercial NFS Servers for Windows available on the market, and the
incredible technical difficulties we faced in configuring them on
Windows.
It runs on Microsoft Windows 7 and later (including Windows 8 and
Server 2008 and 2012).
This source code is licensed under the terms of the Lisp Lesser GNU
Public License, known as
the LLGPL. The LLGPL consists of a preamble and the LGPL. Where these
conflict, the preamble takes precedence. This project is referenced
in the preamble as the LIBRARY.
Installation
This software is open source, however some of the tools needed to
build it are not. You can purchase a supported binary copy of this
software or download an evaluation version from
nfsforwindows.com.
To build this software, you need Cygwin (for GNU make) and Allegro
Common Lisp 10.0 (32-bit, non-SMP). The installer is written in
NSIS.
To build:
To install:
The install step expects that cygwin has C:\
mounted as /c
. It is
also possible to build an installer via:
This will produce an exe file that can be used to install.
Configuration
See the documentation
for more information on how to configure nfs.
Also see doc/configuration.txt
.
Once your exports are configured it’s possible to mount them. Please
consult your client platform’s documentation on how to mount the
exported NFS shares.
Release Notes
UNRELEASED CHANGES
Changes in this section will appear in the next release of Allegro
NFS.
TBD
Version 7.1.0 [TBD]
-
Fix logging time stamps
-
Change how the demo expiration is done, since recent versions of
Windows have made the old scheme less reliable.
Version 7.0.0 [4 Feb 2021]
-
Feature: 64-bit version now available. The 32-bit service on
Windows 10 sometimes has trouble starting due to drivers or other
software grabbing virtual memory regions. The 64-bit version should
not have the issue. -
Feature: when
*open-file-reap-time*
is zero (default is 2)
do not cache open files in the*open-file-cache*
hash table. This
change is described in more detail in doc/notes.txt.
NOTE: this variable renamed from*openfilereaptime*
. -
For backtraces that appear in the log file: turn off circularity
detection, so the backtraces are more readable. -
Fix: uid and gid values above (2^25 — 1) in User Lists were ignored.
-
Fix: better handle errors when sending responses to UDP clients.
The origin of these errors was always mysterious, but they should be
handled more reliably now.
Version 6.3.3 [30 August, 2017]
- Fix: The nfsd thread could crash if a persistent file handle with a
no-longer-existent volume guid was seen.
Version 6.3.2 [9 August, 2017]
-
Fix: It was possible for NFS clients to issue a readdir call with a
requested max response size which is too large to fit into a UDP
datagram. Such requests are now handled without creating a
too-large response. -
Compatibility enhancement: Some NFS clients (for example, the
Windows 7 NFS client) can return a byte-swapped cookie verifier in
readdir requests. Allegro NFS now detects and handles clients that
behave in this way.
Version 6.3.1 [19 July, 2017]
- Fix: correct a regression which resulted in empty directory listings
for directories containing special files (such as pagefile.sys).
Version 6.3 [12 July, 2017]
-
Add configuration option for badly behaved clients that cannot
handle 64-bit file-ids; when turned on, file-ids will be truncated
to 32-bits. -
Fix: if the «nsm-state» file becomes corrupted, then handle this
more gracefully by reseting its contents. -
Fix: readdir*() calls no longer takes a really long time on large
directories. -
Fix: no longer show negative fractional seconds in debug output.
-
Fix: install: detect when a reboot is pending and abort.
-
Fix: uninstall: detect when a reboot is needed and offer to reboot.
Version 6.2 [7 December, 2016]
-
Fix: use an Allegro CL build that fixes a GC leak, which could
result in the server process growing until it runs out of space.
This bug was only present in version 6.1. -
Fix: handle «tcp connection reset» errors, which previously made the
server die and require manual restart. They are now ignored. -
For silent installs (/S given to installer) do not start the
configuration program at the end. -
Directory entries are now returned in the order in which Windows
returns them. Previously, directory listing were reversed. -
The server can now detect when files or directories are renamed
externally (i.e., not by an NFS client) and update its cache
accordingly. Previously it could get into a confused state if files
or directories were renamed externally.
Version 6.1 [21 Jul, 2016]
-
Log possible conflicting NFS server running if an existing (aka
system) portmapper is detected. -
Fix: adjust the nfsd error handling so that certain errors do not
cause the service to exit, and return reasonable errors to the
client. -
Fix: adjustments in heap placement for Windows 10. There should be
fewer problems with service startup due to ASLR. -
Fix: increased general client compatibility.
-
Fix: improved compatibility with the Windows Services For Unix (SFU)
NFS client. -
Fix: don’t display configuration window until config has been
loaded. This will help avoid confusion in cases where the NFS
server is busy and it takes a while to get a response from it. -
Fix: handle full filesystem errors, returning the proper ENOSPC
error code to the client. -
Fix: allow statfs and fsstat procedures on filenames (as opposed to
a directories).
Version 6.0 [27 Mar, 2015]
-
Added support for persistent file handles for files on NTFS
volumes. This means that you can restart Allegro NFS or the machine
that it is running on and not suffer stale NFS file handle errors on
the client. Non-NTFS files (or inaccessible files on NTFS volumes)
still use non-persistent file handles are still subject to stable
NFS file handle errors after restarts. -
Allow control over how long file attribute are cached through the
configuration GUI. See the «File attribute caching time» setting in
the Global tab of the Allegro NFS configuration program. -
Configuration for «Host lists» allows host names in the «New
address» field. When loading the configuration and resolving the
host names, users will be warned if the conversion of saved host
names fails, and the host name will be ignored. -
When constructing file mode bits for reporting to an NFS client,
Allegro NFS uses the filename extension to determine if the file
should have the executable (x) bits set. Previously only files with
extension .exe, .com, or .bat were marked executable. This list is
now adjustable by modifying nfs.cfg and adding an entry for
executable-types. This operation should only be performed by
advanced users. -
File attributes are cached for a maximum of 5 seconds. Prior to this
change, the expiration for cached file attributes would be extended
each time they were accessed. This could be a problem in the
following scenario:-
an NFS client is repeatedly calling stat() on a file to see if its
attributes had changed, and -
the attributes of the file were altered outside of Allegro NFS’s
knowledge.
In this case the new file attributes would never be returned, at
least not until the client stopped probing for a sufficiently long
time. -
-
Use higher precision timestamps in log messages, enabled via an
option on the debug tab. -
Change default statfs blocksize from 8192 to 512. This improves
compatibility with some broken NFS clients which do not work
properly if the blocksize is not 512. -
Minor change to showmount output.
-
General performance and stability improvements.
-
Fix: input validation bugs in the Allegro NFS configuration program.
-
Fix: mounting a subdirectory of an export. For example, if you have
an export named «/export» which has a subdirectory named «files»,
then mounting servername:/export/files from an NFS client now works
properly. -
Fix: file and directory changes on the server weren’t seen by some
clients. This would make files appear to be static even though they
had been modified on the server. -
Fix: some previously invisible files are now seen by clients, such
as in the roots of filesystems, System Volume Information and
pagefile.sys.
Version 5.1 [1 Aug, 2011]
- performance improvements
- minor license changes
- new: toggling of response to showmount requests.
- new: configurable log rotation. Defaults to previous behavior.
- new: directory and file caching duration is now configurable.
- fix: interoperability fixes with VMware ESXi.
- fix: hanging of the server and 100% cpu usage problems are removed.
- fix: moving the error log into the install directory.
- fix: proper locking around exports and logging operations.
- small modifications to icons.
Version 5.0 [22 Feb, 2010]
- performance improvements
- better support Windows Vista/7
- new: support for symbolic links
- new: support for international filenames (UTF-8)
- new: support for mount protocol version 2
- new console separate from service, that is shows log info
- added NLM and NSM debug options
- add date to timestamp logging
- New option
*nfs-set-mtime-on-write*
allows users to work around
Windows’ funny behavior with respect to file modification times.
Normally Windows does not update the mtime on a file until the file
is closed. Since Allegro NFS keeps a file open while it is
actively being written-to, a Windows program periodically checking
the mtime of the file will not be able to tell that the file is
actually being modified until the file is closed. Updating the
mtime during every write access suffers about a 10% penality so the
option is disabled by default. - improvements to hard link support
- better compatibility between UNIX and Windows-style locking
- improved interoperatibility with several UNIX clients
- many other small improvements and fixes
Version 4.5 [20 June, 2007]
- Windows Vista Support
- Many interoperability fixes and bug fixes
- Improved locking support
- NLM and NSM port numbers can now be set manually
Version 4.4 [29 Aug, 2006]
- NFS lock support
- Bug fixes
- Enhanced debugging
Version 4.3 [27 Oct, 2005]
- Installs on systems with Windows Data Execution Prevention (DEP) turned on
- allow specification of mountd port number for dealing with firewall issues
- made mountd subprocess more robust in the face of malformed RPC messages
- adjusted the logging of some «normal» error conditions so they look
less alarming - better performance
- bug fixes
Version 4.0 [10 Aug, 2005]
- NFS protocol V3 support
- large file support
- better performance
- Hard link creation support
Version 3.0 [22 Apr, 2004]
- handle UNC pathnames
- added «use system portmapper» option
- improved performance
Version 2.0 [24 Feb, 2004]
- new configuration utility
Version 1.1.4 [3 Jul, 2003]
- improved interoperability with some clients
- configuration option for altering mode bits
Version 1.1.3 [21 Mar, 2003]
- bug fixes
Version 1.1.1 [23 Jan, 2003]
- Improvements of handling the NFS services
Version 1.0.36 [23 Sep, 2002]
- bug fixes
Version 1.0.33 [27 Feb, 2002]
- initial release
Implementation Notes
The following files in the doc
subdirectory have various information
related to understanding how to debug and understand the product:
access-control.txt
— info on controlling access to the nfs serverconfiguration.txt
— info on configurationdebugging.txt
— notes on debuggingnotes.txt
— implementation notesprofiling.txt
— how to profile the servertesting.txt
— information on testingtodo.txt
— old and new todo information.
Customers Gain 64-bit Performance, Simple Installation,Flexible Configuration and Enterprise Reliability
Lafayette, California, February 16, 2021 — Franz Inc., an early innovator in Artificial Intelligence (AI) and leading supplier of Graph Database technology for Knowledge Graph Solutions, today announced Allegro NFS Server 7.0 for Windowsâ with 64-bit performance and support for all current versions of the Windows operating system. Allegro NFS Server 7.0 delivers a high performance, easy-to-install and reliable solution for small and large enterprise-wide deployments.
“Allegro NFS was inspired by customer demand for an NFS server for Windows that was simple to install and run – without getting bogged down with complex configuration issues,” said Jans Aasman, CEO of Franz Inc. “Over the years, we have continued to deliver on simplicity and efficiency for NFS for Windows. This new 64-bit version offers companies faster performance with the streamlined set-up, flexibility and high reliability that enterprise companies have come to expect from Allegro NFS.”
Network File System (NFS) is a distributed file system protocol developed to allow a user on a client computer to access files over a computer network much like local storage is accessed. Allegro NFS was originally developed for Franz’s internal purposes due to our dissatisfaction with free and commercial NFS Servers available on the market and the incredible technical difficulties faced in configuring them on Windows. Since 2002, Allegro NFS has become a standard for many Fortune 500 companies who want reliable and easy-to-configure access to Windows from NFS clients.
Allegro NFS Server 7.0, runs on all the current versions of the Windows operating system including Vista, Server 2003, Server 2008, Server 2012, Windows 7 (32 and 64-bit), Windows 8 (32 and 64-bit), and Windows 10 (32 and 64-bit). Allegro NFS also has version that to run on Windows XP.
To evaluate or purchase Allegro NFS Server 7.0, go to nfsforwindows.com.
Franz’s technology excellence continues to be recognized by industry experts. Franz was recently named a Best Database Management Software Company of 2021 and the company’s flagship product, AllegroGraph, has gained prominence as a Champion in the Knowledge Graph analytics market, which has skyrocketed in the past few years – prompting Forrester to publish its first Forrester Wave: Graph Data Platforms, Q4 2020.
As Gartner Analyst Mark Beyer explains in his recent report titled, Graph Steps Onto the Main Stage of Data and Analytics: A Gartner Trend Insight Report, “Graph technology has played a small but powerful role in advanced analytics for more than two decades. Now that digital business has introduced expanded tools, platforms and techniques, data and analytics leaders can also leverage graph for data science, metadata management and data management.”
About AllegroGraph
AllegroGraph is a breakthrough graph based platform that allows infinite data integration through a patented approach unifying all data and siloed knowledge into an Entity-Event Knowledge Graph solution that can support massive big data analytics. AllegroGraph’s FedShardä feature utilizes patented federated sharding capabilities that drive 360-degree insights and enable complex reasoning across a distributed Knowledge Graph.
Enterprise Data World – April 18-23 , 2021
Dr. Jans Aasman, CEO, Franz Inc., will be presenting a talk at the Knowledge Graph Conference entitled, “Entity-Event Knowledge Graphs for Data-Centric Organizations,” on April 21st at 10AM Pacific. Register for the Conference.
Franz Knowledge Graph Technology and Services
Franz’s Knowledge Graph Solution includes both technology and services for building industrial strength Entity-Event Knowledge Graphs based on best-of-class tools, products, knowledge, skills and experience. At the core of the solution is Franz’s graph database technology, AllegroGraph with FedShard is utilized by dozens of the top F500 companies worldwide and enables businesses to extract sophisticated decision insights and predictive analytics from highly complex, distributed data that cannot be uncovered with conventional databases.
Franz delivers the expertise for designing ontology and taxonomy-based solutions by utilizing standards-based development processes and tools. Franz also offers data integration services from siloed data using W3C industry standard semantics, which can then be continually integrated with information that comes from other data sources. In addition, the Franz data science team provides expertise in custom algorithms to maximize data analytics and uncover hidden knowledge
About Franz Inc.
Franz Inc. is an early innovator in Artificial Intelligence (AI) and leading supplier of Graph Database technology with expert knowledge in developing and deploying Knowledge Graph solutions. The foundation for Knowledge Graphs and AI lies in the facets of graph technology provided by AllegroGraph and Allegro CL. AllegroGraph is a graph based platform that enables businesses to extract sophisticated decision insights and predictive analytics from highly complex, distributed data that cannot be uncovered with conventional databases. Unlike traditional relational databases or other NoSQL databases, AllegroGraph employs graph technologies that process data with contextual and conceptual intelligence. AllegroGraph is able run queries of unprecedented complexity to support predictive analytics that help organizations make more informed, real-time decisions. AllegroGraph is utilized by dozens of the top Fortune 500 companies worldwide. To learn more about Franz and AllegroGraph, go to https://franz.com/.
Home
>
Products
>
Allegro NFS Server (v7.1 — 64bit) for Windows
$ 78.95
Thank you for your interest in Allegro NFS for Windows. By purchasing the product, you are accepting and agreeing to the Software License Agreement terms. Please be sure you have tested the evaluation version prior to purchase as we do not offer refunds once purchased and downloaded.
NOTE — Product delivered via DOWNLOAD. Once you have completed the purchase of Allegro NFS for Windows, an email message containing the download information will be delivered to the email address you provide. This is a perpetual, non-time limited license.
SKU — 4710 — Allegro NFS v7.1 (64-bit)
Additional Company/Product Details:
UEI — DASVNBV9J291
DUNS — 118184829
ECCN — EAR99
NAICS — 511210
CAGE Code — 0LH07
SIC — 7372
Country of Origin — USA
In today’s digital age, file sharing has become an integral part of our lives. Whether it’s sharing documents with colleagues, sending photos to friends and family, or collaborating on projects with partners from different locations, we rely on effective and efficient file sharing solutions. One such solution that has gained popularity is Allegro NFS Server.
What does Allegro Nfs Server do?
Allegro NFS Server is a powerful software that enables seamless file sharing and collaboration across different platforms. It allows users to share files between Windows, Linux, and UNIX operating systems, making it an ideal choice for organizations with diverse IT environments. Let’s take a closer look at some of the core features of Allegro NFS Server:
1. Cross-Platform Compatibility: Allegro NFS Server provides seamless compatibility between Windows, Linux, and UNIX operating systems. This means that users can easily share files between different platforms without any compatibility issues. Whether you’re working on a Windows machine and need to share files with colleagues using Linux, or vice versa, Allegro NFS Server ensures smooth file sharing across platforms.
2. High Performance: Allegro NFS Server offers high-performance file sharing capabilities. It utilizes advanced caching mechanisms and optimized data transfers to ensure fast and reliable file sharing. This allows users to access and share files without any noticeable delays, even when working with large files or over a network with high latency.
3. Security and Authentication: Security is a top priority when it comes to file sharing, and Allegro NFS Server provides robust security features. It supports various authentication methods, including secure password-based authentication and Kerberos authentication. Additionally, it offers encryption options to protect data during transmission, ensuring that confidential information remains secure.
4. Easy Configuration and Management: Allegro NFS Server is designed with ease of use in mind. It offers a user-friendly interface that allows administrators to configure and manage file sharing settings effortlessly. From setting up access permissions to monitoring file sharing activities, Allegro NFS Server provides intuitive tools that simplify the management process.
Video Tutorial:
PRICE:
License Type | Price per License (USD) |
---|---|
Single User | $59.99 |
Small Business (up to 10 users) | $299.99 |
Enterprise (unlimited users) | Contact Sales |
Review Ratings:
Item | Rating |
---|---|
Effectiveness | ⭐⭐⭐⭐⭐ |
EASE-OF-USE | ⭐⭐⭐⭐⭐ |
Support | ⭐⭐⭐⭐ |
Service | ⭐⭐⭐ |
Quality | ⭐⭐⭐⭐ |
VALUE FOR MONEY | ⭐⭐⭐⭐ |
- Effectiveness: Allegro NFS Server offers robust cross-platform file sharing capabilities, making it highly effective for organizations with diverse IT environments.
- EASE-OF-USE: The user-friendly interface and intuitive management tools make it easy to configure and manage file sharing settings.
- Support: The support provided by Allegro NFS Server is reliable, with a responsive team ready to assist users with any technical issues or queries.
- Service: While the overall service provided by Allegro NFS Server is satisfactory, there is room for improvement in terms of response times and resolution of customer concerns.
- Quality: The quality of file sharing and performance offered by Allegro NFS Server is commendable, ensuring seamless access and sharing of files across platforms.
- VALUE FOR MONEY: With its competitive pricing and feature set, Allegro NFS Server offers good value for money, especially for organizations that require cross-platform file sharing.
Is Allegro Nfs Server Worth It?
When considering the value of Allegro NFS Server, it’s important to evaluate your organization’s file sharing needs. If you have a diverse IT environment with a mix of Windows, Linux, and UNIX operating systems, Allegro NFS Server provides significant value by enabling seamless cross-platform file sharing. Its high performance, robust security features, and ease of use make it a worthwhile investment for organizations looking to streamline their file sharing processes.
Additionally, Allegro NFS Server’s pricing is reasonable, especially considering the benefits it offers. With different licensing options available, organizations can choose the license type that best suits their needs and budget. The single user license is ideal for individual users or small teams, while the small business and enterprise licenses cater to larger organizations with more extensive file sharing requirements.
Overall, Allegro NFS Server is worth considering for organizations that require efficient and secure file sharing across different platforms. Its compatibility, performance, and ease of use make it a valuable asset in enhancing collaboration and productivity.
Is Allegro Nfs Server Safe?
Ensuring the safety and security of data is a crucial aspect of any file sharing solution. Allegro NFS Server prioritizes security by offering robust security features and authentication methods. Here are three key safety measures offered by Allegro NFS Server:
1. Authentication: Allegro NFS Server supports secure password-based authentication and Kerberos authentication. These authentication methods ensure that only authorized users can access shared files, adding an extra layer of security to the file sharing process.
2. Encryption: During the transmission of files, Allegro NFS Server allows the option of encryption. Encryption protects data from unauthorized access by converting it into a form that can only be decrypted by the intended recipient, ensuring the confidentiality and integrity of shared files.
3. Access Controls: Allegro NFS Server provides granular access control settings, giving administrators the ability to define permissions and restrictions for individual users or groups. This helps prevent unauthorized access to sensitive files and ensures that only authorized individuals can modify or delete files.
While Allegro NFS Server takes the necessary precautions to secure file sharing, it’s important to note that no system is entirely immune to vulnerabilities. Organizations should complement Allegro NFS Server’s security measures by implementing other security practices, such as regularly updating software, using strong passwords, and conducting regular security audits.
What Could Be Better
While Allegro NFS Server offers many impressive features, there are a few areas that could be improved upon:
1. User Interface: While the overall user interface of Allegro NFS Server is intuitive, some users may find it slightly outdated. A modern and visually appealing interface would enhance the user experience and make it more visually engaging.
2. Documentation: While Allegro NFS Server provides documentation and guides for users, the depth and comprehensiveness of the documentation could be improved. Clear and detailed documentation would benefit users in understanding the software’s features and troubleshooting any issues that may arise.
3. Enhanced Support: While Allegro NFS Server provides support for its users, there is room for improvement in terms of response times and the availability of support channels. Expanding support options and reducing response times would greatly enhance the overall customer experience.
Alternatives to Allegro Nfs Server
While Allegro NFS Server offers excellent cross-platform file sharing capabilities, there are alternative software options available that also provide similar functionality. Here are three alternatives worth considering:
1. OpenText Exceed onDemand
OpenText Exceed onDemand is a powerful software solution that enables secure and reliable application access and file sharing across diverse platforms. It offers advanced features such as centralized administration, high-performance protocol optimization, and strong security measures. Download Link: Download Link
2. Samba
Samba is an open-source software suite that provides seamless file and print sharing between different operating systems. It offers cross-platform compatibility, security features, and excellent performance. Download Link: Download Link
3. Serv-U Managed File Transfer
Serv-U Managed File Transfer is a comprehensive solution that enables secure file transfers and collaboration across different platforms. It offers features such as secure FTP, automation, and centralized management. Download Link: Download Link
These alternatives provide options for organizations looking for cross-platform file sharing solutions. Each software has its own strengths and features, so it’s important to evaluate your organization’s specific requirements before making a decision.
5 FAQs about Allegro Nfs Server
Q1: Is Allegro NFS Server compatible with the latest operating systems?
A: Yes, Allegro NFS Server is compatible with the latest versions of the Windows, Linux, and UNIX operating systems. It ensures seamless file sharing regardless of the operating systems being used.
Q2: Can multiple users access and share files simultaneously?
A: Yes, Allegro NFS Server supports multiple user connections, allowing simultaneous access and file sharing by multiple users. This makes it ideal for organizations with a large number of users who need to collaborate on files.
Q3: Does Allegro NFS Server support encryption?
A: Yes, Allegro NFS Server supports encryption during file transmission. This ensures that data remains secure and confidential during the sharing process.
Q4: Can I restrict access to certain files or folders?
A: Yes, Allegro NFS Server provides granular access control settings, allowing administrators to restrict access to specific files or folders. This ensures that only authorized users can access sensitive information.
Q5: Is technical support available for Allegro NFS Server?
A: Yes, Allegro NFS Server offers technical support to its users. They have a dedicated support team that can assist with any technical issues or queries that may arise.
Final Words
Allegro NFS Server is a comprehensive software solution that simplifies file sharing and collaboration across different platforms. With its cross-platform compatibility, high performance, and robust security features, it offers immense value to organizations looking to streamline their file sharing processes. The user-friendly interface and intuitive management tools make it easy to configure and manage file sharing settings, while its affordable pricing options cater to organizations of all sizes. Although there is room for improvement in certain areas, Allegro NFS Server remains a reliable choice for efficient and secure cross-platform file sharing.
Allegro NFS Server for Windows
Allegro NFS-сервер, Finale Аллегро для Windows был вдохновлен.
Описание
«Была вдохновлена Allegro NFS-сервер, Finale Аллегро для Windows».
indir.biz Редактора: Allegro NFS-сервер для Windows, чтобы настроить их столкнулись бесплатных и коммерческих NFS серверов, имеющихся на рынке на сегодняшний день и была вдохновлена недовольства невероятные технические трудности Finale Allegro на Windows 2000.
Напротив, используя наши собственные комментарии к флагманской
Продукты Allegro CL, динамический объектно-ориентированная среда разработки для Common Lisp / CLOS разочарован решением нас больше, чем предложение. Allegro CL, прототипов и развертывания сложных, критически важные проекты являются идеальными для гибкости, масштабируемости и важна скорость.
Этот проект стоит затраченных усилий. Все мы в то же самое количество времени мы сделали письменном виде свои собственные версии Common Lisp продукт на основе менеджера по NFS мухи мы купили сказал. Allegro NFS версии неделю после недели для создания бета-версии, и быстрее, продукты, которые мы пытались сделать, было бы воспользоваться. Allegro NFS-сервера теперь может свободно скачать Windows 4.5.