Input two commands to a new terminal?How to see terminal commands generated by GUI actionsHow can i fit 2 commands in 1 terminal shortcutHow can I audit commands executed by each user in the Terminal?Automate two commands in sequence on login (Killing Nemo)How to run two 'python manage.py runserver' commands of two different folder in a single terminalCombine two commands into one commandHow do I execute terminal commands by clicking an icon?Lock copy-paste input to terminal while sudo prompts for passwordrunning two commands from a single terminalBash script: switch between two terminals to execute commands

Is there a way to make member function NOT callable from constructor?

Does the average primeness of natural numbers tend to zero?

Why is the design of haulage companies so “special”?

What do the Banks children have against barley water?

Is it true that "The augmented fourth (A4) and the diminished fifth (d5) are the only aug and dim intervals that appear in diatonic scales"

Doomsday-clock for my fantasy planet

Why is making salt water prohibited on Shabbat?

What to wear for invited talk in Canada

How to move the player while also allowing forces to affect it

Why does this relative pronoun not take the case of the noun it is referring to?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

Unbreakable Formation vs. Cry of the Carnarium

Landlord wants to switch my lease to a "Land contract" to "get back at the city"

If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?

Is domain driven design an anti-SQL pattern?

Is "plugging out" electronic devices an American expression?

Does it makes sense to buy a new cycle to learn riding?

Check if two datetimes are between two others

Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?

I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine

What is GPS' 19 year rollover and does it present a cybersecurity issue?

Does a dangling wire really electrocute me if I'm standing in water?

Is it legal to have the "// (c) 2019 John Smith" header in all files when there are hundreds of contributors?

Extreme, but not acceptable situation and I can't start the work tomorrow morning



Input two commands to a new terminal?


How to see terminal commands generated by GUI actionsHow can i fit 2 commands in 1 terminal shortcutHow can I audit commands executed by each user in the Terminal?Automate two commands in sequence on login (Killing Nemo)How to run two 'python manage.py runserver' commands of two different folder in a single terminalCombine two commands into one commandHow do I execute terminal commands by clicking an icon?Lock copy-paste input to terminal while sudo prompts for passwordrunning 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;








3















Is there a way I can input these two commands into a new terminal at the same time?



( konsole -e sudo nethogs 
sudo sysctl net.ipv4.ip_forward=1 )









share|improve this question









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.




















  • Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

    – Zchpyvr
    2 hours ago

















3















Is there a way I can input these two commands into a new terminal at the same time?



( konsole -e sudo nethogs 
sudo sysctl net.ipv4.ip_forward=1 )









share|improve this question









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.




















  • Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

    – Zchpyvr
    2 hours ago













3












3








3


1






Is there a way I can input these two commands into a new terminal at the same time?



( konsole -e sudo nethogs 
sudo sysctl net.ipv4.ip_forward=1 )









share|improve this question









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.












Is there a way I can input these two commands into a new terminal at the same time?



( konsole -e sudo nethogs 
sudo sysctl net.ipv4.ip_forward=1 )






command-line






share|improve this question









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.











share|improve this question









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.









share|improve this question




share|improve this question








edited 2 hours ago









tommy61157

144113




144113






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 9 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.












  • Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

    – Zchpyvr
    2 hours ago

















  • Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

    – Zchpyvr
    2 hours ago
















Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

– Zchpyvr
2 hours ago





Could you add some more context? What are you trying to accomplish by running these commands "at the same time"?

– Zchpyvr
2 hours ago










1 Answer
1






active

oldest

votes


















5














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.






share|improve this answer

























  • 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
    8 hours ago












  • @mo97 - I cannot tell from what you posted, is it still not working?

    – slm
    8 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
    8 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
    8 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
    8 hours ago












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.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1132126%2finput-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









5














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.






share|improve this answer

























  • 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
    8 hours ago












  • @mo97 - I cannot tell from what you posted, is it still not working?

    – slm
    8 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
    8 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
    8 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
    8 hours ago
















5














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.






share|improve this answer

























  • 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
    8 hours ago












  • @mo97 - I cannot tell from what you posted, is it still not working?

    – slm
    8 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
    8 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
    8 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
    8 hours ago














5












5








5







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








edited 9 hours ago

























answered 9 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
    8 hours ago












  • @mo97 - I cannot tell from what you posted, is it still not working?

    – slm
    8 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
    8 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
    8 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
    8 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
    8 hours ago












  • @mo97 - I cannot tell from what you posted, is it still not working?

    – slm
    8 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
    8 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
    8 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
    8 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
8 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
8 hours ago














@mo97 - I cannot tell from what you posted, is it still not working?

– slm
8 hours ago





@mo97 - I cannot tell from what you posted, is it still not working?

– slm
8 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
8 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
8 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
8 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
8 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
8 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
8 hours ago











mo97 is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1132126%2finput-two-commands-to-a-new-terminal%23new-answer', 'question_page');

);

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







Popular posts from this blog

How should I use the fbox command correctly to avoid producing a Bad Box message?How to put a long piece of text in a box?How to specify height and width of fboxIs there an arrayrulecolor-like command to change the rule color of fbox?What is the command to highlight bad boxes in pdf?Why does fbox sometimes place the box *over* the graphic image?how to put the text in the boxHow to create command for a box where text inside the box can automatically adjust?how can I make an fbox like command with certain color, shape and width of border?how to use fbox in align modeFbox increase the spacing between the box and it content (inner margin)how to change the box height of an equationWhat is the use of the hbox in a newcommand command?

152 Atala Notae | Nexus externi | Tabula navigationis"Discovery Circumstances: Numbered Minor Planets"2000152Small-Body Database

Doxepinum Nexus interni Notae | Tabula navigationis3158DB01142WHOa682390"Structural Analysis of the Histamine H1 Receptor""Transdermal and Topical Drug Administration in the Treatment of Pain""Antidepressants as antipruritic agents: A review"