How can I launch any application using terminal?
up vote
0
down vote
favorite
I tried to launch some packages with terminal. If I type teamviewer in terminal in launches but most of the application didn't.
Can anyone be able to help me out? Thanks.
16.04 command-line
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
up vote
0
down vote
favorite
I tried to launch some packages with terminal. If I type teamviewer in terminal in launches but most of the application didn't.
Can anyone be able to help me out? Thanks.
16.04 command-line
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the packagebridge-utilscontains a couple of programs you can execute but neither of those is called bridge-utils
– Kev Inski
Nov 29 at 10:23
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I tried to launch some packages with terminal. If I type teamviewer in terminal in launches but most of the application didn't.
Can anyone be able to help me out? Thanks.
16.04 command-line
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I tried to launch some packages with terminal. If I type teamviewer in terminal in launches but most of the application didn't.
Can anyone be able to help me out? Thanks.
16.04 command-line
16.04 command-line
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Nov 29 at 10:24
Ravexina
30.8k1479107
30.8k1479107
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Nov 29 at 10:20
Sanjeevi sans
31
31
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Sanjeevi sans is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the packagebridge-utilscontains a couple of programs you can execute but neither of those is called bridge-utils
– Kev Inski
Nov 29 at 10:23
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30
add a comment |
1
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the packagebridge-utilscontains a couple of programs you can execute but neither of those is called bridge-utils
– Kev Inski
Nov 29 at 10:23
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30
1
1
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the package
bridge-utils contains a couple of programs you can execute but neither of those is called bridge-utils– Kev Inski
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the package
bridge-utils contains a couple of programs you can execute but neither of those is called bridge-utils– Kev Inski
Nov 29 at 10:23
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
Try opening up the program you want normally, check task viewer for its process name, enter it in the terminal
You can also partially enter the process name, press tab, and the rest of it gets autocompleted (if there aren't any other programs named similarly)
google- then tab, and google-chrome should appear, then press enter (apologies if I remembered that command wrong. I can't actually check right now)
add a comment |
up vote
1
down vote
As others have already pointed out, application names and package names can be different. For example LibreOffice can be started with the following:
soffice
And you can specify the exact program to launch by adding arguments:
soffice --writer
soffice --calc
There are also dedicated commands:
swriter
scalc
By the way these names come from the time, when LibreOffice was called StarOffice.
You have also mentioned Google Chrome, in that case, the application can be started with google-chrome.
By the way, when in doubt about the name of the command for a package, you might use the apt-file command as
apt-file list <package_name>
It will show all the files provided by the package. Though you need to install it first by sudo apt install apt-file.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Try opening up the program you want normally, check task viewer for its process name, enter it in the terminal
You can also partially enter the process name, press tab, and the rest of it gets autocompleted (if there aren't any other programs named similarly)
google- then tab, and google-chrome should appear, then press enter (apologies if I remembered that command wrong. I can't actually check right now)
add a comment |
up vote
1
down vote
accepted
Try opening up the program you want normally, check task viewer for its process name, enter it in the terminal
You can also partially enter the process name, press tab, and the rest of it gets autocompleted (if there aren't any other programs named similarly)
google- then tab, and google-chrome should appear, then press enter (apologies if I remembered that command wrong. I can't actually check right now)
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Try opening up the program you want normally, check task viewer for its process name, enter it in the terminal
You can also partially enter the process name, press tab, and the rest of it gets autocompleted (if there aren't any other programs named similarly)
google- then tab, and google-chrome should appear, then press enter (apologies if I remembered that command wrong. I can't actually check right now)
Try opening up the program you want normally, check task viewer for its process name, enter it in the terminal
You can also partially enter the process name, press tab, and the rest of it gets autocompleted (if there aren't any other programs named similarly)
google- then tab, and google-chrome should appear, then press enter (apologies if I remembered that command wrong. I can't actually check right now)
answered Nov 29 at 10:39
Alex
2211210
2211210
add a comment |
add a comment |
up vote
1
down vote
As others have already pointed out, application names and package names can be different. For example LibreOffice can be started with the following:
soffice
And you can specify the exact program to launch by adding arguments:
soffice --writer
soffice --calc
There are also dedicated commands:
swriter
scalc
By the way these names come from the time, when LibreOffice was called StarOffice.
You have also mentioned Google Chrome, in that case, the application can be started with google-chrome.
By the way, when in doubt about the name of the command for a package, you might use the apt-file command as
apt-file list <package_name>
It will show all the files provided by the package. Though you need to install it first by sudo apt install apt-file.
add a comment |
up vote
1
down vote
As others have already pointed out, application names and package names can be different. For example LibreOffice can be started with the following:
soffice
And you can specify the exact program to launch by adding arguments:
soffice --writer
soffice --calc
There are also dedicated commands:
swriter
scalc
By the way these names come from the time, when LibreOffice was called StarOffice.
You have also mentioned Google Chrome, in that case, the application can be started with google-chrome.
By the way, when in doubt about the name of the command for a package, you might use the apt-file command as
apt-file list <package_name>
It will show all the files provided by the package. Though you need to install it first by sudo apt install apt-file.
add a comment |
up vote
1
down vote
up vote
1
down vote
As others have already pointed out, application names and package names can be different. For example LibreOffice can be started with the following:
soffice
And you can specify the exact program to launch by adding arguments:
soffice --writer
soffice --calc
There are also dedicated commands:
swriter
scalc
By the way these names come from the time, when LibreOffice was called StarOffice.
You have also mentioned Google Chrome, in that case, the application can be started with google-chrome.
By the way, when in doubt about the name of the command for a package, you might use the apt-file command as
apt-file list <package_name>
It will show all the files provided by the package. Though you need to install it first by sudo apt install apt-file.
As others have already pointed out, application names and package names can be different. For example LibreOffice can be started with the following:
soffice
And you can specify the exact program to launch by adding arguments:
soffice --writer
soffice --calc
There are also dedicated commands:
swriter
scalc
By the way these names come from the time, when LibreOffice was called StarOffice.
You have also mentioned Google Chrome, in that case, the application can be started with google-chrome.
By the way, when in doubt about the name of the command for a package, you might use the apt-file command as
apt-file list <package_name>
It will show all the files provided by the package. Though you need to install it first by sudo apt install apt-file.
answered Nov 29 at 10:36
meskobalazs
2,1791022
2,1791022
add a comment |
add a comment |
Sanjeevi sans is a new contributor. Be nice, and check out our Code of Conduct.
Sanjeevi sans is a new contributor. Be nice, and check out our Code of Conduct.
Sanjeevi sans is a new contributor. Be nice, and check out our Code of Conduct.
Sanjeevi sans is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1097071%2fhow-can-i-launch-any-application-using-terminal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Please Give us some examples of programs that you are not able to run using terminal...
– Ravexina
Nov 29 at 10:23
The package you install may not be the name of the application but installs the application/s. For example the package
bridge-utilscontains a couple of programs you can execute but neither of those is called bridge-utils– Kev Inski
Nov 29 at 10:23
I tried installing No machine and and other application like google chrome and and Libreoffice Writer it doesn't work. I couldn't able to find the right name for apllication to type.
– Sanjeevi sans
Nov 29 at 10:30