PDA

View Full Version : [ubuntu] How can i start an application using the terminal?



harrkou
January 26th, 2009, 12:16 PM
I m trying to start applications (for example the calculator) using the terminal but i must be doing something wrong... I type "./calculator" or simply "calculator" but terminal shows syntax error.Can some1 help me plz ?

meho_r
January 26th, 2009, 12:19 PM
Try entering gcalctool. Some apps have different names from what is expected (calculator is an example). But many are started just as it's expected. I.e. Pidgin is started with pidgin, Gimp with gimp etc.

Joeb454
January 26th, 2009, 12:19 PM
the ./ tells the terminal to look for the program in your current directory, which I'm assuming the calculator isn't ;)

You have to know the correct program name to run things from the terminal.

mcduck
January 26th, 2009, 12:22 PM
Just enter the name of the program.

The hard thing is that the name of the program isn't always what you see in Gnome's menu, for example Gnome's calculator is "gnome-calculator". If you don't know the name of a program you can search for with the "apropos"-command; for example "apropos calculator" will list a couple of available calculator applications.

harrkou
January 26th, 2009, 12:26 PM
Oh now i get it! Thx a lot!!!!

meho_r
January 26th, 2009, 12:40 PM
And you can even use Alt+F2 and then start entering a guessed name of the program and after first two-three letters entered you'll get some associations in the lower part of the window. Just click the program you intended and you'll see its name appears ;) Try it with "calculator": when you start typing, you'll notice in the lower part something like "Calculator", "OpenOffice Spreadsheet" or more. Click on "Calculator" and you'll get its name.

blueridgedog
January 26th, 2009, 01:03 PM
You can also append an & at the end of the command so that it spawns it as a new process, leaving the terminal free to be closed or to do other things.


gcalctool &