When installing applications, packages, or anything else on a machine, it is important to find out what architecture it is using to obtain the best results and minimize the risk of potential conflicts inside the system. There are two architectures currently available, 32 and 64 bit. 64 bit is the current generation and is usually what modern computers are running.
To find out whether a Linux kernel is 32 or 64 bit, simply type the following command into the terminal (CTRL+ALT+T):
uname -m
If the kernel is 64 bit, the string returned should include the numbers 64. An example being x86_64.
