Send two commands to a new terminal?Terminal commands to add NEW custom browser to Preferred Applications?How to open a new Terminal with shell prompt and running multiple commands in Command Line?Syntax of Terminal CommandsHow to send/receive files via Bluetooth using commands/Terminal?notify-send and terminal commandHow to run two 'python manage.py runserver' commands of two different folder in a single terminalHow can I send commands to specific terminal windows?From a bash script, send commands to a terminal windowrunning two commands from a single terminalBash script: switch between two terminals to execute commands
What to wear for invited talk in Canada
Calculate Levenshtein distance between two strings in Python
Is every set a filtered colimit of finite sets?
Why doesn't a const reference extend the life of a temporary object passed via a function?
OA final episode explanation
I see my dog run
Prime joint compound before latex paint?
Is this food a bread or a loaf?
How to move the player while also allowing forces to affect it
How can I add custom success page
What are the advantages and disadvantages of running one shots compared to campaigns?
System.XmlException: start tag unexpected character =
How to make payment on the internet without leaving a money trail?
Is it possible to make sharp wind that can cut stuff from afar?
Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?
Check if two datetimes are between two others
Domain expired, GoDaddy holds it and is asking more money
extract characters between two commas?
Is Social Media Science Fiction?
Visa needed to visit friends in London
Does it makes sense to buy a cycle to learn riding?
Are white and non-white police officers equally likely to kill black suspects?
Pristine Bit Checking
Why airport relocation isn't done gradually?
Send two commands to a new terminal?
Terminal commands to add NEW custom browser to Preferred Applications?How to open a new Terminal with shell prompt and running multiple commands in Command Line?Syntax of Terminal CommandsHow to send/receive files via Bluetooth using commands/Terminal?notify-send and terminal commandHow to run two 'python manage.py runserver' commands of two different folder in a single terminalHow can I send commands to specific terminal windows?From a bash script, send commands to a terminal windowrunning two commands from a single terminalBash script: switch between two terminals to execute commands
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Send two commands to a new terminal?
( konsole -e sudo nethogs
sudo sysctl net.ipv4.ip_forward=1 )
command-line
New contributor
mo97 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 |
Send two commands to a new terminal?
( konsole -e sudo nethogs
sudo sysctl net.ipv4.ip_forward=1 )
command-line
New contributor
mo97 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 |
Send two commands to a new terminal?
( konsole -e sudo nethogs
sudo sysctl net.ipv4.ip_forward=1 )
command-line
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Send two commands to a new terminal?
( konsole -e sudo nethogs
sudo sysctl net.ipv4.ip_forward=1 )
command-line
command-line
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 6 hours ago
slm
2,00311826
2,00311826
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 6 hours ago
mo97mo97
162
162
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
mo97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
mo97 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 |
add a comment |
1 Answer
1
active
oldest
votes
I think what you want to do with konsole is the following:
$ konsole -e "sudo sysctl net.ipv4.ip_forward=1; sudo nethogs" --noclose --hold
This will invoke konsole and then run commands within it, -e. In this case we're running the 2 sudo commands and we're using the --noclose & --hold to tell konsole to keep the window open while these run.
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try usingkonsole -e "sudo whoami; sudo whoami" --noclose --holdto see what the issue might be more easily.
– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,konsole -e "sudo whoami; sudo whoami;bash"-- The finalbashwill make thekonsolewindow stay instead of close immediately after finishing the previous commands.
– sudodus
5 hours ago
|
show 2 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
mo97 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1132126%2fsend-two-commands-to-a-new-terminal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think what you want to do with konsole is the following:
$ konsole -e "sudo sysctl net.ipv4.ip_forward=1; sudo nethogs" --noclose --hold
This will invoke konsole and then run commands within it, -e. In this case we're running the 2 sudo commands and we're using the --noclose & --hold to tell konsole to keep the window open while these run.
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try usingkonsole -e "sudo whoami; sudo whoami" --noclose --holdto see what the issue might be more easily.
– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,konsole -e "sudo whoami; sudo whoami;bash"-- The finalbashwill make thekonsolewindow stay instead of close immediately after finishing the previous commands.
– sudodus
5 hours ago
|
show 2 more comments
I think what you want to do with konsole is the following:
$ konsole -e "sudo sysctl net.ipv4.ip_forward=1; sudo nethogs" --noclose --hold
This will invoke konsole and then run commands within it, -e. In this case we're running the 2 sudo commands and we're using the --noclose & --hold to tell konsole to keep the window open while these run.
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try usingkonsole -e "sudo whoami; sudo whoami" --noclose --holdto see what the issue might be more easily.
– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,konsole -e "sudo whoami; sudo whoami;bash"-- The finalbashwill make thekonsolewindow stay instead of close immediately after finishing the previous commands.
– sudodus
5 hours ago
|
show 2 more comments
I think what you want to do with konsole is the following:
$ konsole -e "sudo sysctl net.ipv4.ip_forward=1; sudo nethogs" --noclose --hold
This will invoke konsole and then run commands within it, -e. In this case we're running the 2 sudo commands and we're using the --noclose & --hold to tell konsole to keep the window open while these run.
I think what you want to do with konsole is the following:
$ konsole -e "sudo sysctl net.ipv4.ip_forward=1; sudo nethogs" --noclose --hold
This will invoke konsole and then run commands within it, -e. In this case we're running the 2 sudo commands and we're using the --noclose & --hold to tell konsole to keep the window open while these run.
edited 6 hours ago
answered 6 hours ago
slmslm
2,00311826
2,00311826
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try usingkonsole -e "sudo whoami; sudo whoami" --noclose --holdto see what the issue might be more easily.
– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,konsole -e "sudo whoami; sudo whoami;bash"-- The finalbashwill make thekonsolewindow stay instead of close immediately after finishing the previous commands.
– sudodus
5 hours ago
|
show 2 more comments
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try usingkonsole -e "sudo whoami; sudo whoami" --noclose --holdto see what the issue might be more easily.
– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,konsole -e "sudo whoami; sudo whoami;bash"-- The finalbashwill make thekonsolewindow stay instead of close immediately after finishing the previous commands.
– sudodus
5 hours ago
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
root@MO-HP-EliteBook-8560p:/home/mo# konsole -e "sudo apt-get update; sudo apt-get update" --noclose --hold QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' root@MO-HP-EliteBook-
– mo97
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - I cannot tell from what you posted, is it still not working?
– slm
5 hours ago
@mo97 - you might want to try using
konsole -e "sudo whoami; sudo whoami" --noclose --hold to see what the issue might be more easily.– slm
5 hours ago
@mo97 - you might want to try using
konsole -e "sudo whoami; sudo whoami" --noclose --hold to see what the issue might be more easily.– slm
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
Done everything you say .. This is the result .. QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root' QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
– mo97
5 hours ago
@mo97, You can also test what happens with the following command line,
konsole -e "sudo whoami; sudo whoami;bash" -- The final bash will make the konsole window stay instead of close immediately after finishing the previous commands.– sudodus
5 hours ago
@mo97, You can also test what happens with the following command line,
konsole -e "sudo whoami; sudo whoami;bash" -- The final bash will make the konsole window stay instead of close immediately after finishing the previous commands.– sudodus
5 hours ago
|
show 2 more comments
mo97 is a new contributor. Be nice, and check out our Code of Conduct.
mo97 is a new contributor. Be nice, and check out our Code of Conduct.
mo97 is a new contributor. Be nice, and check out our Code of Conduct.
mo97 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.
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%2f1132126%2fsend-two-commands-to-a-new-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