answersLogoWhite

0

yes

it can be use in almost all

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What command to view Linux version only?

uname -a


How can you check the version of kernel you are currently running and upgrade the kernel?

These are separate and unrelated tasks. To check the version of the running kernel in Linux, use the command uname -r. To upgrade the kernel, either use your distro's package manager (if any) to update the system, or download and compile the Linux kernel source.


Is your processor 64-bit?

If you are using Linux then you can use uname command, which prints system information including kernel version and whether kernel is 32 bit or 64 bit. You can also use less /proc/cpuinfo command determine if it is 64 bit CPU or not. Example: $ uname -a


How do you know what kernel and distro of Linux you have?

You can find out the current kernel version by issuing the commanduname -rYou can find the name of the distro and it's version number by runningcat /etc/*releaseor**cat /etc/*version**If the first one doesn't work, try the second, since not all distros keep theirs in the same place.


How do you know the configuration of your OS?

The command uname -a


Command for system information utility?

To use System Information, in the Run dialog box, type Msinfo32 and press Enter.


How can you find the version of Linux you are using on your computer?

The best solution is this command (actually two in one): uname -a && cat /etc/*release The first part of the command tells you the version of the Linux kernel that is running. The second part of the command tells you the name of the distribution, like "Red Hat Enterprise Linux X.X". When asked this same question, most people only answer the first part, which is not always what the user needs to know.


Can you provide a Linux shell script that prints the current user ID?

#/bin/bash export UNAME=`whoami` export USERID=`id -u $UNAME` echo $USERID


How do you check which version Linux you are using?

type "uname -a && cat /etc/*release" in a terminal (without the quotes).


How do you find which unix flavor we are using?

Use the 'uname -a' command. It reports on the Unix system, version, machine name, amongst other things.


What is the command to get the Unix version?

cat /proc/version The above answer will only work on certain systems. For most Unix systems, use the 'uname' command to get the Unix version. AIX uses the oslevel command.


What command can you use to change the current working directory to the directory where the modules for the running kernel are stored?

cd /lib/modules/$(uname -r)