LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Primary methods of launching apps (https://www.linuxquestions.org/questions/linux-general-1/primary-methods-of-launching-apps-4175437092/)

darkmouse 11-14-2012 06:42 AM

Primary methods of launching apps
 
This is for school but was wondering what another option is for opening apps in any Linux distro. I have so far are the main menu (applications/places) and the Run Application tool. WHat is another option? Is using the Terminal an option?

tronayne 11-14-2012 06:54 AM

You can always open a terminal, type a command and hit the enter key.

"Command" can be soffice (to start up LibreOffice or OpenOffice), firefox (to start Firefox), thuderbird (to start Thunderbird), vi filename to edit a file and so on.

Everything that's on those click-'n'-drool menus? Right click and look at properties for the command that's executed.

Hope this helps some.

darkmouse 11-14-2012 07:03 AM

Yes, very much and you had offered some amazing info. Thanks for your intelligent input. I had recently migrated to Linux from the slow-you-down Windows OS for my Linux class. I am loving these OSes. Thanks again for your time, energy, assistance and intelligence in this matter.

darkmouse 11-14-2012 07:20 AM

How would you open System Monitor using Terminal? I have tried systemmonitor system monitor sysmonitor. What am I doing wrong and how to correct this?

sundialsvcs 11-14-2012 08:31 AM

When you're running a GUI session, the window-manager (blah blah) is the shell, and when you click on an app icon or specify a program to be run, that "launches an app."

When you're running a web-browser, using FastCGI or CGI, this also is "launching an app." When your program uses fork or exec, that also.

When you use crontab, ditto.

YJ Lee 11-17-2012 10:03 PM

Hi, newbie trying to help :)

Usually if I'm trying to launch something from command line but have no idea what the command is, I'll open it using the usual application menu and take a loop at Help > About. For example, I had no idea that the default 'document viewer' in my old Ubuntu 11.04 is called "evince" (command "evince" launches it from terminal) until I looked at that.

Another choice is to guess the few starting characters and use terminal's tab completion to see if you get lucky. Maybe try "sys" and tab.

It may also be related to what desktop environment you're using. For example, if you're in GNOME the command may be "gnome-" something.

All the best!

catkin 11-17-2012 10:31 PM

Quote:

Originally Posted by darkmouse (Post 4829138)
How would you open System Monitor using Terminal? I have tried systemmonitor system monitor sysmonitor. What am I doing wrong and how to correct this?

One way to try to find the name of the executable is man -k <keyword> and then look at the most promising man pages. For example
Code:

c@CW9:~$ man -k monitor
[snip]
gkrellm []          (1)  - The GNU Krell Monitors
[snip]
c@CW9:~$ man gkrellm


catkin 11-17-2012 10:37 PM

Quote:

Originally Posted by darkmouse (Post 4829099)
This is for school but was wondering what another option is for opening apps in any Linux distro. I have so far are the main menu (applications/places) and the Run Application tool. WHat is another option? Is using the Terminal an option?

Most (all?) desktops have launchers in their panels.

Most (all?) desktops can be configured to autostart applications when the desktop session starts.

Linux has boot scripts which can be used to start applications.

The cron and at daemons can start applications.

Applications can be started from other systems.

dugan 11-19-2012 09:36 AM

"Run program" dialog box. Usually hotkeyed to ALT-F2.

EDIT: I now see that this was mentioned right in the first post. It's early.


All times are GMT -5. The time now is 10:56 AM.