Search 5,000,000+ questions and answers.

Frequently Asked Questions

How can I determine the OS version my machine is running?

CS. Dept. Network FAQ
On most machines, use the following command: uname -a -------------------------------------------------------------------------------
Related Questions

How can I determine which version of RADIUS I am running?

NJDEP Air Quality Permitting Program (AQPP) - RADIUS
To determine what version of RADIUS is currently installed on your machine click the "Help" item on the menu bar and select "About." You will presented with a screen indicating the version of RADIUS you are using.
Related Questions

How do I determine the version of Perl/Tk that I am running?

comp.lang.perl.tk FAQ
With an up to date perl installation one may query the local perl setup and all extensions via the command: perldoc perllocal For the Tk extension: version numbering has changed recently and determining the version of Perl/Tk that you are running now depends on what version you are running: Tk-b10 (and higher) has changed to $Tk::VERSION (rather than the older "$Tk:Version") to be consistent with other packages.
Related Questions

How can I determine the version of FrontPage Server Extensions running on my server?

FrontPage Frequently Asked Questions
FrontPage forms only send email if the host server has FrontPage Server Extensions configured to recognize a mail server. You can direct your host to the FP Server Extensions Resource Kit for information on how to properly set up hosting for FrontPage users. America Online (AOL) uses unique proprietary dialer software. This article describes several items you should keep in mind if you are using FrontPage with America Online's Internet software.
Related Questions

A2. How do I check which OS my machine is running?

Hook's VS-880EX Information Pages - FAQs
Hold down channel 1 [CH EDIT] and [SELECT] buttons while powering up. The version displayed in the lower left of the display during normal operating mode only shows 3 digits (i.e. 2.01), however the actual version is 4 digits (2.013).
Related Questions

I am running Mac OS 9. Will Cinematize work on my machine?

Miraizon Cinematize 2 FAQ
No. Miraizon only offers Cinematize 2 for Macintosh users running Mac OS X 10.2 or later (10.3 or later for Cinematize 2 Pro). We encourage you to upgrade your Macintosh to run Mac OS X. Yes. Not only will Cinematize 2 and Cinematize 2 Pro work on G4- and G5-based machines, they will operate significantly faster on machines with these processors. This is because both have been optimized to take advantage of the AltiVec vector processor included in all G4, G5, and higher processors.
Related Questions

comp.lang.perl.tk FAQ
Version numbering has changed recently and determining the version of perl/Tk that you are running now depends on what version you are running: Tk-b10 (and higher) has changed to $Tk::VERSION rather than $Tk:Version to be consistent with other packages. The version numbers as of Tk-b9.
Related Questions

How do I find out what version of the kernel is running on my machine?

If you boot up in text mode, (which, by the way, will load far more quickly than a graphical login) it will be there above the login prompt, along with what distribution and version of Linux you have, for example in some cases, the command cat /etc/issue will also give you this information--it works in RedHat, but not in Slackware)
Related Questions

How do I determine which version of the ASE2000 software I am running?

ASE2000 Communication Test Set
The ASE2000 software version can be found by starting the ASE2000 program, select Help and About ASE2000. This will display the software version number. You will need this information when contacting ASE for technical support. In general, no. Due to copyright restrictions ASE is prohibited from distributing protocol specification documentation. The best option is to contact the RTU or IED manufacturer and request documentation for the specific protocol.
Related Questions

How can I adjust sound volume? How can I tell which OS version is running?

CSG Q&A on Linux
The following command will tell you what variety of Unix it is and which kernel version: uname -a On our Linux systems the file /etc/issue also indicates what variety of Linux it is. For example: more /etc/issue Mandrake Linux release 9.1 (Bamboo) for i586 Kernel 2.4.21-02doc on an i686 Also /proc/version has similar details.
Related Questions

How can I check to see what version of Palm OS is running on my handheld?

iScribe FAQs : Hardware
iScribe offers the ability to view drug monographs with Epocrates. For other drug reference tools, there are no known incompatibility issues between electronic drug references and the iScribe application. Just be sure to have enough free memory to install the iScribe system.
Related Questions

Where can I get a machine-readable version of the standard?

Stroustrup: FAQ
The C++ standard (ISO/IEC 14882) is available for downloading at the National Committee for Information Technology Standards Electronic Store. The cost is (as I write this) US$18.00 payable on-line via credit card. The downloaded document is in PDF form, about 3Mb total size. Be warned that the standard is not a tutorial; even expert programmers will do better learning about C++ and new C++ features from a textbook. Are there any features you'd like to remove from C++? Not really.
Related Questions

How can I determine what the current username is on the machine running the browser?

FAQTs - Knowledge Base - faqts : Computers : Programming : L...
Hello, I would like to send a js-variable to a textfile(for using it in flash) could you please tell me how I can do that
Related Questions

How do I determine which ROM version I have?

HPLX.NET FAQs: THE FAQ
What is the Shift Key Bug (HEU)? It is a bug that occurs on 100LX ROM versions 1.02a or less. Occasionally, the key that is pressed after the shift key is ignored and the next key pressed is capitalized. If you try to write "Shift Key Bug" it becomes "Hift Ey Ug". This problem is intermittent and not all users observe it. What information is encoded in the serial number? The week it was manufactured.
Related Questions

How do I determine what version of EZproxy is running on my server?

Frequently Asked Questions
The most common cause of this issue is that EZproxy is running on Linux, and the ezproxy.log file has grown to be 2 gigabytes in size. When this occurs, EZproxy restarts every time it tries to log something to the log file. If this is the case, renaming the ezproxy.log file will resolve this issue.
Related Questions

How do I see what version of Xalan-Java I'm running? How do I determine which parser I'm using?

Frequently asked questions
Using the EnvironmentCheck utility: To help diagnose classpath problems and also determine which version of Xalan-Java is being used, try running Xalan-Java's environment checking utility, checked in at xml-xalan/java/src/org/apache/xalan/xslt/EnvironmentCheck. Be sure to run EnvironmentCheck in the environment where you are experiencing the problem.
Related Questions

Question 2: How can I determine what is the version of Moldplus software I am running?

Moldplus SA
Answer: When you launch the Moldplus.DLL in Mastercam, you will find the version number presented to you in the Mastercam prompt area
Related Questions

How do I determine which version of Active Trader Pro I'm running?

Frequently Asked Questions
To determine which version you're running, login to Active Trader Pro. Go to Help > About and you will see the version number. Top
Related Questions

How can I perform an operation on every machine on the network that is running?

Environment settings set by a batch file are not working.
Normally a logon script can be used but if you wish to run a command/copy a file to every current machine now you can use the following. This outputs a list of all current machines to the file list.txt. We can then parse that file to perform an operation, e.g. to copy files: C:\> FOR /F " tokens=1 " %i in (list.txt) do copy quaropts.dat "%i\C$\program files\navnt" FOR /F " tokens=1 " %%i in (list.txt) do copy quaropts.
Related Questions

How can I access the web interface from a different machine than the one it is running on?

SpamBayes FAQ
By default, the web interface rejects browser access unless the browser is running on the same machine as the interface - if it was open to anyone, then people who came across your machine would be able to change your settings and possibly read your mail. In some cases, however, you might want to open access up - if you use more than one machine to process mail, for example.
Related Questions

Will there be a Carbon version for Mac OS?

Fourth World WebMerge FAQ
It's here now: WebMerge is available as a Carbon application specifically to run under Mac OS X. You can download it here.
Related Questions

How can I determine the version number of the copy of AMPL that I'm currently running?

AMPL FAQ
Or, at any point in an AMPL session, you can see the version message by looking at the contents of AMPL's version option, by typing The 8-digit number represents a date in the form yyyymmdd -- 16 May 2000 in this example. You can compare this date against the dates of the entries in the AMPL change logs and in the writeups of new AMPL features.
Related Questions

How do I detect which version I am running?

AspectJ Frequently Asked Questions
To programmatically detect the version of the AspectJ runtime while running under Java 1.4 or later, get the version from the package: Package lang = org.aspectj.lang.JoinPoint.class.getPackage(); String version = lang.getImplementationVersion(); When running under Java 1.3 or earlier, read the manifest directly. For example code, see the source for AjBuildManager.checkRtJar(AjBuildConfig) in the org.aspectj.ajdt.internal.core.builder package of the org.aspectj.ajdt.
Related Questions

How can I tell which version of Windows I'm running?

Firewall: FAQ
If you don't know whether your computer is running Windows XP or an earlier version of Windows, take the following steps:
Related Questions

What version are we running?

What version are we running? - Tactical Gamer
Battlefield 2142 - Technical Support & FAQs Technical Support and FAQs for Battlefield 2142 and related mods.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact