Today I need to download a version of VM Player. I was confused as to what version I should download for my system. The last time I installed my Linux Mint Julia 10 was so long time ago and I have forgotten what version I installed. I have found the following to be useful in knowing the complete version:
Use Bash Shell To Get Which Distro Is Installed
In your terminal just issue the following:
- Using the nano command
nano /etc/issue
- Using the cat command (as Marianne suggested in the comments below)
cat /etc/issue
Use Bash Shell To Get Which Bit Version Is Installed
In your terminal just issue the following:
uname -m
NOTE:
- i686 will mean you have 32-bit installed
- x86_64 will mean you have 64 bit installed
Thanks for the info, this was handy 🙂 Although, it is easier to just use “cat /etc/issue” rather than “nano /etc/issue”… i.e., just displaying the (one line) file, rather than opening a text editor.
Hi Marianne,
you actually made a VERY NICE suggestion. The “cat” command seems NICE also!
—
For those looking for how to use “cat”, see this nice tutorial: http://beginnerlinuxtutorial.com/help-tutorial/basic-linux-commands/linux-cat-command/
Cheers!
//Wasseem
It’s not which “Bit version”, it’s which ‘architecture’