How to add the real hostname in the beginning of Linux cli commandHow to add hostname, date, and fix disk sizeWhat is the easiest way to add a string on the beginning of every line of the file from the command line?How to add column in the beginning of file using perl?Remove the multiple comma's from specific column of tab delimited fileand print the words on new lineawk + how to print each sec string (IP) after the first hostnameHow to add lines/text to the beginning of a fileHow to add properties in the end of the two first lines with double quote?dollar sign inside eval string in bashHow to remove the summary at the beginning of the “top” command in Linux?how do i add the creation of a directory to this cli command
How important is knowledge of trig identities for use in Calculus
Is the "spacetime" the same thing as the mathematical 4th dimension?
Does AES-ECB with random padding added to each block satisfy IND-CPA?
Is there any site with telescopes data?
Would allowing versatile weapons wielded in two hands to benefit from Dueling be unbalanced?
How to add the real hostname in the beginning of Linux cli command
What is the logical distinction between “the same” and “equal to?”
How to say "respectively" in German when listing (enumerating) things
Why most footers have a background color has a divider of section?
Top off gas with old oil, is that bad?
To what degree did the Supreme Court limit Boris Johnson's ability to prorogue?
Lost passport and visa, tried to reapply, got rejected twice. What are my next steps?
Integrals from Brasilian Math Olympiad 2019
Detail vs. filler
Why does `FindFit` fail so badly in this simple case?
How many space launch vehicles are under development worldwide?
Earliest time frog can jump to the other side of a river in C#. Codility's task
Why aren't faces sharp in my f/1.8 portraits even though I'm carefully using center-point autofocus?
Was the ruling that prorogation was unlawful only possible because of the creation of a separate supreme court?
Incomplete iffalse: How to shift a scope in polar coordinate?
Which Catholic priests were given diplomatic missions?
Why, even after his imprisonment, do people keep calling Hannibal Lecter "Doctor"?
Can an energy drink or chocolate before an exam be useful ? What sort of other edible goods be helpful?
What would influence an alien race to map their planet in a way other than the traditional map of the Earth
How to add the real hostname in the beginning of Linux cli command
How to add hostname, date, and fix disk sizeWhat is the easiest way to add a string on the beginning of every line of the file from the command line?How to add column in the beginning of file using perl?Remove the multiple comma's from specific column of tab delimited fileand print the words on new lineawk + how to print each sec string (IP) after the first hostnameHow to add lines/text to the beginning of a fileHow to add properties in the end of the two first lines with double quote?dollar sign inside eval string in bashHow to remove the summary at the beginning of the “top” command in Linux?how do i add the creation of a directory to this cli command
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
we have redhat servers - 7.2
the following output from sar print all relevant details as the following
sar -p -d 1 1
07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
we want now to add the hostname of the machine in the beginning of each line
first we found the hostname
hostname=` hostname `
echo $hostname
server_mng14
expected results
sar -p -d 1 1
server_mng14 07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
server_mng14 07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
server_mng14 07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
server_mng14 07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
server_mng14 07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
what we need to pipe after - sar -p -d 1 1 in order to get the hostname of the beginning of each line?
bash shell-script awk sed perl
|
show 1 more comment
we have redhat servers - 7.2
the following output from sar print all relevant details as the following
sar -p -d 1 1
07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
we want now to add the hostname of the machine in the beginning of each line
first we found the hostname
hostname=` hostname `
echo $hostname
server_mng14
expected results
sar -p -d 1 1
server_mng14 07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
server_mng14 07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
server_mng14 07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
server_mng14 07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
server_mng14 07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
what we need to pipe after - sar -p -d 1 1 in order to get the hostname of the beginning of each line?
bash shell-script awk sed perl
saron my system showsLinux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)header on the top but it's missing in your example. What version ofsardo you use?
– Arkadiusz Drabczyk
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
Ok, I use11.2.1.1. Are you sure there is no header in output ofsaror you just removed it?
– Arkadiusz Drabczyk
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname socomp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)looks weird.
– Arkadiusz Drabczyk
8 hours ago
|
show 1 more comment
we have redhat servers - 7.2
the following output from sar print all relevant details as the following
sar -p -d 1 1
07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
we want now to add the hostname of the machine in the beginning of each line
first we found the hostname
hostname=` hostname `
echo $hostname
server_mng14
expected results
sar -p -d 1 1
server_mng14 07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
server_mng14 07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
server_mng14 07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
server_mng14 07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
server_mng14 07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
what we need to pipe after - sar -p -d 1 1 in order to get the hostname of the beginning of each line?
bash shell-script awk sed perl
we have redhat servers - 7.2
the following output from sar print all relevant details as the following
sar -p -d 1 1
07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
we want now to add the hostname of the machine in the beginning of each line
first we found the hostname
hostname=` hostname `
echo $hostname
server_mng14
expected results
sar -p -d 1 1
server_mng14 07:16:35 PM DEV tps rd_sec/s wr_sec/s avgrq-sz avgqu-sz await svctm %util
server_mng14 07:16:36 PM sda 13.00 0.00 120.00 9.23 0.04 3.08 1.38 1.80
server_mng14 07:16:36 PM vg_livecd-lv_root 15.00 0.00 120.00 8.00 0.05 3.07 1.27 1.90
server_mng14 07:16:36 PM vg_livecd-lv_swap 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
server_mng14 07:16:36 PM vg_livecd-lv_home 0.00 0.00 0.00 0.00 0.00 0.00
what we need to pipe after - sar -p -d 1 1 in order to get the hostname of the beginning of each line?
bash shell-script awk sed perl
bash shell-script awk sed perl
edited 8 hours ago
muru
44.9k5 gold badges111 silver badges184 bronze badges
44.9k5 gold badges111 silver badges184 bronze badges
asked 8 hours ago
yaelyael
3,1158 gold badges46 silver badges99 bronze badges
3,1158 gold badges46 silver badges99 bronze badges
saron my system showsLinux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)header on the top but it's missing in your example. What version ofsardo you use?
– Arkadiusz Drabczyk
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
Ok, I use11.2.1.1. Are you sure there is no header in output ofsaror you just removed it?
– Arkadiusz Drabczyk
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname socomp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)looks weird.
– Arkadiusz Drabczyk
8 hours ago
|
show 1 more comment
saron my system showsLinux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)header on the top but it's missing in your example. What version ofsardo you use?
– Arkadiusz Drabczyk
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
Ok, I use11.2.1.1. Are you sure there is no header in output ofsaror you just removed it?
– Arkadiusz Drabczyk
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname socomp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)looks weird.
– Arkadiusz Drabczyk
8 hours ago
sar on my system shows Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU) header on the top but it's missing in your example. What version of sar do you use?– Arkadiusz Drabczyk
8 hours ago
sar on my system shows Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU) header on the top but it's missing in your example. What version of sar do you use?– Arkadiusz Drabczyk
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
Ok, I use
11.2.1.1. Are you sure there is no header in output of sar or you just removed it?– Arkadiusz Drabczyk
8 hours ago
Ok, I use
11.2.1.1. Are you sure there is no header in output of sar or you just removed it?– Arkadiusz Drabczyk
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname so
comp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU) looks weird.– Arkadiusz Drabczyk
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname so
comp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU) looks weird.– Arkadiusz Drabczyk
8 hours ago
|
show 1 more comment
2 Answers
2
active
oldest
votes
You could run:
sar -p -d 1 1 | sed "s/^/$(hostname) /"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'
– rusty shackleford
8 hours ago
add a comment
|
You can do:
sar -p -d 1 1 | sed "s,^,$(hostname) ,"
if you want to prepend hostname to only non-empty lines:
sar -p -d 1 1 | sed -E "s,^(.+),$(hostname) 1,"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
add a comment
|
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/4.0/"u003ecc by-sa 4.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
);
);
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%2f543462%2fhow-to-add-the-real-hostname-in-the-beginning-of-linux-cli-command%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could run:
sar -p -d 1 1 | sed "s/^/$(hostname) /"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'
– rusty shackleford
8 hours ago
add a comment
|
You could run:
sar -p -d 1 1 | sed "s/^/$(hostname) /"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'
– rusty shackleford
8 hours ago
add a comment
|
You could run:
sar -p -d 1 1 | sed "s/^/$(hostname) /"
You could run:
sar -p -d 1 1 | sed "s/^/$(hostname) /"
answered 8 hours ago
rusty shacklefordrusty shackleford
1,6192 silver badges17 bronze badges
1,6192 silver badges17 bronze badges
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'
– rusty shackleford
8 hours ago
add a comment
|
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'
– rusty shackleford
8 hours ago
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
2
2
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'– rusty shackleford
8 hours ago
ssh user@remote-machine 'sar -p -d 1 1 | sed "s/^/$(hostname) /"'– rusty shackleford
8 hours ago
add a comment
|
You can do:
sar -p -d 1 1 | sed "s,^,$(hostname) ,"
if you want to prepend hostname to only non-empty lines:
sar -p -d 1 1 | sed -E "s,^(.+),$(hostname) 1,"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
add a comment
|
You can do:
sar -p -d 1 1 | sed "s,^,$(hostname) ,"
if you want to prepend hostname to only non-empty lines:
sar -p -d 1 1 | sed -E "s,^(.+),$(hostname) 1,"
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
add a comment
|
You can do:
sar -p -d 1 1 | sed "s,^,$(hostname) ,"
if you want to prepend hostname to only non-empty lines:
sar -p -d 1 1 | sed -E "s,^(.+),$(hostname) 1,"
You can do:
sar -p -d 1 1 | sed "s,^,$(hostname) ,"
if you want to prepend hostname to only non-empty lines:
sar -p -d 1 1 | sed -E "s,^(.+),$(hostname) 1,"
answered 8 hours ago
Arkadiusz DrabczykArkadiusz Drabczyk
10k3 gold badges22 silver badges37 bronze badges
10k3 gold badges22 silver badges37 bronze badges
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
add a comment
|
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
what in case I run the sar cli on remote machine , so how in this case I set the hostname of remote machine inside sed?
– yael
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
How do you run it? Do you use SSH?
– Arkadiusz Drabczyk
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
example - res=` ssh $remote_machine "sar -p -d 1 1" , then echo "$res" | ....
– yael
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
@yael: your example is not correct. Fix formatting.
– Arkadiusz Drabczyk
8 hours ago
add a comment
|
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%2f543462%2fhow-to-add-the-real-hostname-in-the-beginning-of-linux-cli-command%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
saron my system showsLinux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)header on the top but it's missing in your example. What version ofsardo you use?– Arkadiusz Drabczyk
8 hours ago
sysstat version 10.1.5 (C) Sebastien Godard (sysstat <at> orange.fr)
– yael
8 hours ago
Ok, I use
11.2.1.1. Are you sure there is no header in output ofsaror you just removed it?– Arkadiusz Drabczyk
8 hours ago
I not understand why this is important because what I want is to add the hostname in the first field of the output , it could be any other command
– yael
8 hours ago
This is important because you post incorrect input that only causes confusion and expect people to help you. And the header already contains hostname so
comp Linux 4.4.38 (comp) 09/24/2019 _x86_64_ (8 CPU)looks weird.– Arkadiusz Drabczyk
8 hours ago