ss is slow when process option (-p) usedvim is too slow when saving filesSlow down just one process to...
Should I use a resistor between the gate driver and MOSFET (gate pin)?
Who or what determines if a curse is valid or not?
What could make large expeditions ineffective for exploring territory full of dangers and valuable resources?
We get more abuse than anyone else
manipulate a list: replace random position of a specific integer n times by 0
Drawing a circle with nodes shift with Tikz
Why don't humans perceive waves as twice the frequency they are?
Does unblocking power bar outlets through short extension cords increase fire risk?
Demographic consequences of closed loop reincarnation
What are the basics of commands in Minecraft Java Edition?
Why can't I hear fret buzz through the amp?
When can a polynomial be written as a polynomial function of another polynomial?
Which modern firearm should a time traveler bring to be easily reproducible for a historic civilization?
Obtaining head and parts without evaluation
Inscriptio Labyrinthica
Is surviving this (blood loss) scenario possible?
Is it possible to have a career in SciComp without contributing to arms research?
Did Voldemort kill his father before finding out about Horcruxes?
Pauli exclusion principle - black holes
How do you give a date interval with diffuse dates?
Why does a tetrahedral molecule like methane have a dipole moment of zero?
Did Hitler say this quote about homeschooling?
How can one convert an expression to a string while keeping the quotation marks of strings that are part of the expression?
How to find location on Cambridge-Mildenhall railway that still has tracks/rails?
ss is slow when process option (-p) used
vim is too slow when saving filesSlow down just one process to regulate CPU temperatureext4 used space (not -m option, not deleted files)Slow down CPU when it heats upWhy do I have Established TCP connections with no owner PID?Netstat showing a strange process named “public”When is zswap used?Show bound socket (but not listen) process--numeric-ports option for netstatss command: file descriptor information when using the -p option
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
When checking for process listening on port using ss
command, it's slow when compared with (obsolete) netstat
command.
$ time ss -nlp | grep -E ':8081|:8007|:8010'
LISTEN 0 100 :::8081 :::* users:(("java",28681,47))
LISTEN 0 1 ::ffff:127.0.0.1:8007 :::* users:(("java",28681,220))
LISTEN 0 100 :::8010 :::* users:(("java",28681,48))
real 0m0.608s
user 0m0.118s
sys 0m0.475s
$ time netstat -nlp | grep -E ':8081|:8007|:8010'
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 :::8081 :::* LISTEN 28681/java
tcp 0 0 ::ffff:127.0.0.1:8007 :::* LISTEN 28681/java
tcp 0 0 :::8010 :::* LISTEN 28681/java
real 0m0.146s
user 0m0.012s
sys 0m0.129s
Why is 'ss' slow with '-p' option? Is any alternative way to alleviate slowness in ss
?
linux netstat ss
New contributor
add a comment |
When checking for process listening on port using ss
command, it's slow when compared with (obsolete) netstat
command.
$ time ss -nlp | grep -E ':8081|:8007|:8010'
LISTEN 0 100 :::8081 :::* users:(("java",28681,47))
LISTEN 0 1 ::ffff:127.0.0.1:8007 :::* users:(("java",28681,220))
LISTEN 0 100 :::8010 :::* users:(("java",28681,48))
real 0m0.608s
user 0m0.118s
sys 0m0.475s
$ time netstat -nlp | grep -E ':8081|:8007|:8010'
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 :::8081 :::* LISTEN 28681/java
tcp 0 0 ::ffff:127.0.0.1:8007 :::* LISTEN 28681/java
tcp 0 0 :::8010 :::* LISTEN 28681/java
real 0m0.146s
user 0m0.012s
sys 0m0.129s
Why is 'ss' slow with '-p' option? Is any alternative way to alleviate slowness in ss
?
linux netstat ss
New contributor
add a comment |
When checking for process listening on port using ss
command, it's slow when compared with (obsolete) netstat
command.
$ time ss -nlp | grep -E ':8081|:8007|:8010'
LISTEN 0 100 :::8081 :::* users:(("java",28681,47))
LISTEN 0 1 ::ffff:127.0.0.1:8007 :::* users:(("java",28681,220))
LISTEN 0 100 :::8010 :::* users:(("java",28681,48))
real 0m0.608s
user 0m0.118s
sys 0m0.475s
$ time netstat -nlp | grep -E ':8081|:8007|:8010'
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 :::8081 :::* LISTEN 28681/java
tcp 0 0 ::ffff:127.0.0.1:8007 :::* LISTEN 28681/java
tcp 0 0 :::8010 :::* LISTEN 28681/java
real 0m0.146s
user 0m0.012s
sys 0m0.129s
Why is 'ss' slow with '-p' option? Is any alternative way to alleviate slowness in ss
?
linux netstat ss
New contributor
When checking for process listening on port using ss
command, it's slow when compared with (obsolete) netstat
command.
$ time ss -nlp | grep -E ':8081|:8007|:8010'
LISTEN 0 100 :::8081 :::* users:(("java",28681,47))
LISTEN 0 1 ::ffff:127.0.0.1:8007 :::* users:(("java",28681,220))
LISTEN 0 100 :::8010 :::* users:(("java",28681,48))
real 0m0.608s
user 0m0.118s
sys 0m0.475s
$ time netstat -nlp | grep -E ':8081|:8007|:8010'
(Not all processes could be identified, non-owned process info
will not be shown, you would have to be root to see it all.)
tcp 0 0 :::8081 :::* LISTEN 28681/java
tcp 0 0 ::ffff:127.0.0.1:8007 :::* LISTEN 28681/java
tcp 0 0 :::8010 :::* LISTEN 28681/java
real 0m0.146s
user 0m0.012s
sys 0m0.129s
Why is 'ss' slow with '-p' option? Is any alternative way to alleviate slowness in ss
?
linux netstat ss
linux netstat ss
New contributor
New contributor
New contributor
asked 17 mins ago
sungtmsungtm
52 bronze badges
52 bronze badges
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
});
}
});
sungtm 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%2funix.stackexchange.com%2fquestions%2f530958%2fss-is-slow-when-process-option-p-used%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
sungtm is a new contributor. Be nice, and check out our Code of Conduct.
sungtm is a new contributor. Be nice, and check out our Code of Conduct.
sungtm is a new contributor. Be nice, and check out our Code of Conduct.
sungtm is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f530958%2fss-is-slow-when-process-option-p-used%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