HowTo: Launch Calculator in Ubuntu
I recently seen people searching a lot for “How To Launch Calculator in Ubuntu”. I don’t know why since its very simple, but here you go anyways.
To open calculator from graphical user interface go to Applications -> Accessories -> Calculator.
To launch shell from Run Applications, press Alt+F2 then type the following:
1 | gcalctool |
To use calculator in Terminal, first you need to install it:
1 | sudo apt-get install apcalc |
Then to launch it in Termincal, type this:
1 | calc |
The use it like this:
Addition:
1 | 1+3 |
Subtraction:
1 | 5-1 |
Division:
1 | 1/3 |
Multiplication:
1 | 5*3 |
To Exit Calculator:
1 | exit |
for more options on how to use terminal calculator go here;
http://linux.die.net/man/1/calc



