How can I run this tcp command in Ubuntu? [closed]

Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I want to run this command in Ubuntu:
tcp 0 0 0.0.0.0:50010 0.0.0.0:* LISTEN <pid>/java
but tcp is not recognized in Ubuntu. What could be an alternative for this?
ubuntu tcp nc
closed as unclear what you're asking by Kiwy, Jeff Schaller, meuh, G-Man, forcefsck Apr 29 at 21:24
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |Â
up vote
0
down vote
favorite
I want to run this command in Ubuntu:
tcp 0 0 0.0.0.0:50010 0.0.0.0:* LISTEN <pid>/java
but tcp is not recognized in Ubuntu. What could be an alternative for this?
ubuntu tcp nc
closed as unclear what you're asking by Kiwy, Jeff Schaller, meuh, G-Man, forcefsck Apr 29 at 21:24
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
That's output fromnetstat. Also tryss.
â dsstorefile1
Apr 29 at 13:03
1
Why do you want to run that command? As noted above, this is output from another command, and includesjavaas the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.
â Jeff Schaller
Apr 29 at 13:43
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to run this command in Ubuntu:
tcp 0 0 0.0.0.0:50010 0.0.0.0:* LISTEN <pid>/java
but tcp is not recognized in Ubuntu. What could be an alternative for this?
ubuntu tcp nc
I want to run this command in Ubuntu:
tcp 0 0 0.0.0.0:50010 0.0.0.0:* LISTEN <pid>/java
but tcp is not recognized in Ubuntu. What could be an alternative for this?
ubuntu tcp nc
edited Apr 29 at 13:08
Zanna
2,4211023
2,4211023
asked Apr 29 at 13:02
nvnvashisth
61
61
closed as unclear what you're asking by Kiwy, Jeff Schaller, meuh, G-Man, forcefsck Apr 29 at 21:24
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
closed as unclear what you're asking by Kiwy, Jeff Schaller, meuh, G-Man, forcefsck Apr 29 at 21:24
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, itâÂÂs hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
1
That's output fromnetstat. Also tryss.
â dsstorefile1
Apr 29 at 13:03
1
Why do you want to run that command? As noted above, this is output from another command, and includesjavaas the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.
â Jeff Schaller
Apr 29 at 13:43
add a comment |Â
1
That's output fromnetstat. Also tryss.
â dsstorefile1
Apr 29 at 13:03
1
Why do you want to run that command? As noted above, this is output from another command, and includesjavaas the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.
â Jeff Schaller
Apr 29 at 13:43
1
1
That's output from
netstat. Also try ss.â dsstorefile1
Apr 29 at 13:03
That's output from
netstat. Also try ss.â dsstorefile1
Apr 29 at 13:03
1
1
Why do you want to run that command? As noted above, this is output from another command, and includes
java as the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.â Jeff Schaller
Apr 29 at 13:43
Why do you want to run that command? As noted above, this is output from another command, and includes
java as the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.â Jeff Schaller
Apr 29 at 13:43
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
I think you can find solution using this guide.
Use netstat command
Listing all the LISTENING Ports of TCP and UDP connections
Listing all ports (both TCP and UDP) using
netstat -aoption.Listing TCP Ports connections
Listing only TCP (Transmission Control Protocol) port connections using
netstat -at.
Link:
20 Netstat Commands for Linux Network Management
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I think you can find solution using this guide.
Use netstat command
Listing all the LISTENING Ports of TCP and UDP connections
Listing all ports (both TCP and UDP) using
netstat -aoption.Listing TCP Ports connections
Listing only TCP (Transmission Control Protocol) port connections using
netstat -at.
Link:
20 Netstat Commands for Linux Network Management
add a comment |Â
up vote
1
down vote
I think you can find solution using this guide.
Use netstat command
Listing all the LISTENING Ports of TCP and UDP connections
Listing all ports (both TCP and UDP) using
netstat -aoption.Listing TCP Ports connections
Listing only TCP (Transmission Control Protocol) port connections using
netstat -at.
Link:
20 Netstat Commands for Linux Network Management
add a comment |Â
up vote
1
down vote
up vote
1
down vote
I think you can find solution using this guide.
Use netstat command
Listing all the LISTENING Ports of TCP and UDP connections
Listing all ports (both TCP and UDP) using
netstat -aoption.Listing TCP Ports connections
Listing only TCP (Transmission Control Protocol) port connections using
netstat -at.
Link:
20 Netstat Commands for Linux Network Management
I think you can find solution using this guide.
Use netstat command
Listing all the LISTENING Ports of TCP and UDP connections
Listing all ports (both TCP and UDP) using
netstat -aoption.Listing TCP Ports connections
Listing only TCP (Transmission Control Protocol) port connections using
netstat -at.
Link:
20 Netstat Commands for Linux Network Management
answered Apr 29 at 13:12
Eranda Peiris
307113
307113
add a comment |Â
add a comment |Â
1
That's output from
netstat. Also tryss.â dsstorefile1
Apr 29 at 13:03
1
Why do you want to run that command? As noted above, this is output from another command, and includes
javaas the only executable part of it. Are you wanting to write a java program that listens on port 50010? Please spell out your situation.â Jeff Schaller
Apr 29 at 13:43