How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

About writing shell scripts and making the most of your shell
Forum rules
Topics in this forum are automatically closed 6 months after creation.
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by MrEen »

If I caught you before going back to Cinnamon, try this in the Application Autostart thing for the on logout trigger:

Code: Select all

bash -c "echo 'standby 0' | cec-client -s -d 1 && sleep 3"
I don't think it's worth switching back if I was too late, just an experiment.
Last edited by MrEen on Thu Jun 25, 2020 8:57 pm, edited 1 time in total.
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

I had him try that in the systemd service case (although you want to delete either the ; or the &&) even though I'd rather expect the delay to be TV- rather than computer-sides.

I really want to see the requested journalctl output.
User avatar
MrEen
Level 23
Level 23
Posts: 18343
Joined: Mon Jun 12, 2017 8:39 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by MrEen »

Edited the copying error I made, thanks for that.

The reason I added it for the trigger function is ToZ's answer on another similar issue here:
I also think that Xfce starts shutting X down so canberra-gtk-play will not be able to run (It requires a valid X session). I just tested this with a command like this:

Code: Select all

bash -c "mplayer /path/to/sound/file && sleep 2"
...and it seems to work. mplayer doesn't require an X session to run.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

Hey, I've switched to Cinnamon, sorry MrEen.

Now Rene, what is it you wanted me to do?
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

First of all go back to getting /etc/systemd/system/cec-client.service in place and enabled as per the previous viewtopic.php?p=1833819#p1833819. Then reboot TWICE and run journalctl -b -1 to look at the full journal from the previous boot; you are placed in the less pager: use e.g. /TV to look for messages starting and later stopping the created service (Starting|Started|Stopping|Stopped Turn on/off TV at boot/shutdown) and see if anything stands out. I.e., a complaint for the "Stopping" instance of it not being able to log.

If so definitely, but otherwise also, edit /etc/systemd/system/cec-client.service to remove the -d 1 or make it be -d 0 on certainly the ExecStop line, for symmetry both ExecStop and ExecStart. Reboot twice again, repeat the journalctl thing (if still not useful).

I am assuming you had already tried adding the ; /bin/sleep 3 thing to the ExecStop command (see above). If not, try that also...
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

Okay, following your instructions now. In the meantime I thought it would be useful to say that I got the code from this tutorial here: https://www.linuxuprising.com/2019/07/r ... ected.html maybe there's something in there that can help.
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

Read, but can't say it helps. If from a terminal

Code: Select all

echo standby 0 | /usr/bin/cec-client -s -d 1
and/or

Code: Select all

echo standby 0 | /usr/bin/cec-client -s -d 0
works, it should work from the ExecStop= line, wrapped in /bin/sh -c "...". The delay thing you mentioned could although I doubt it perhaps be involved, but in that case having the ExecStop line be

Code: Select all

ExecStop=/bin/sh -c 'echo standby 0 | /usr/bin/cec-client -s -d 1; /bin/sleep 3'
or with 5 or 10 seconds instead of 3 for good measure (and only for testing) and/or again with -d 0 instead should seemingly work.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

I couldn't see anything refrencing a TV with

Code: Select all

journalctl -b -1
When running your latest suggestion I'm getting the following.

Code: Select all

media@Media-Linux:~$ echo standby 0 | /usr/bin/cec-client -s -d 1
opening a connection to the CEC adapter...
ERROR:   [            3634]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            3634]	could not open a connection (try 1)
ERROR:   [            6470]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            6470]	could not open a connection (try 2)
ERROR:   [            8360]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            8360]	could not open a connection (try 3)
ERROR:   [            9620]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            9620]	could not open a connection (try 4)
unable to open the device on port /dev/ttyACM0
ERROR:   [           10625]	could not start CEC communications
media@Media-Linux:~$ echo standby 0 | /usr/bin/cec-client -s -d 0
== skipped log-level parameter: invalid level '0' ==
opening a connection to the CEC adapter...
DEBUG:   [             134]	Broadcast (F): osd name set to 'Broadcast'
ERROR:   [            3636]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            3636]	could not open a connection (try 1)
ERROR:   [            6472]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            6472]	could not open a connection (try 2)
ERROR:   [            8362]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            8362]	could not open a connection (try 3)
ERROR:   [            9622]	error opening serial port '/dev/ttyACM0': Permission denied
ERROR:   [            9622]	could not open a connection (try 4)
unable to open the device on port /dev/ttyACM0
NOTICE:  [           10627]	connection opened
media@Media-Linux:~$ 
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

You seemed to imply in the above that it did work from a command line, but the permission is in any case not a problem for the systemd service which runs as root. From the command line you apparently need echo standby 0 | sudo cec-client -s -d 1 which I assume works.

In any case it is not possible that "TV" (uppercase) was not in the log if you installed and enabled cec-client.service correctly. I.e., created it, ran as per instructions sudo systemctl enable cec-client.service, and rebooted twice. Just not possible, unless you changed the description of/in the .service file. Can as such only advise to try again. You can this time drop the -d 0 attempts: the thing seems to insist on logging at least something...
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

It seems that I don't understand what I'm supposed to be doing with

Code: Select all

 journalctl -b -1
it's too long to paste into a single post (character limit) so I'm going to split it into two posts now, here's the first half.

Code: Select all

media@Media-Linux:~$ journalctl -b -1
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 A>
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revis>
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy0>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.>
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'S>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'A>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'M>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'M>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_siz>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_siz>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_siz>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, cont>
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x000000>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000>
lines 1-23...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. >
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0>
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39->
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 fl>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE re>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX re>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bo>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CS>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context s>
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x00000000000>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x00000000000>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x00000000000>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000>
lines 1-24...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, dat>
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) >
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic >
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating p>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds reg>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 9>
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] u>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] r>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] u>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] r>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] u>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] A>
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] r>
lines 1-27...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04>
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc versio>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0>
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point regist>
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, u>
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
lines 1-31...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubu>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7>
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compac>
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
lines 1-35...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-1>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626->
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
lines 1-39...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a>
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
lines 1-43...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SM>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet sp>
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
lines 1-46...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 1>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
lines 1-49...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ub>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
lines 1-54...skipping...
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

Here's the second half:

Code: Select all

-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ubuntu 5.4.0-39.43-generic 5>
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878fa018-0x0000000087919457] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000087919458-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088111000-0x000000008e9b4fff] usable
lines 1-59...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ubuntu 5.4.0-39.43-generic 5.4.41)
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878fa018-0x0000000087919457] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000087919458-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008ed12000-0x000000008eea6fff] usable
lines 1-61...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ubuntu 5.4.0-39.43-generic 5.4.41)
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878fa018-0x0000000087919457] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000087919458-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008fbff000-0x000000008fbfffff] usable
lines 1-64...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ubuntu 5.4.0-39.43-generic 5.4.41)
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878fa018-0x0000000087919457] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000087919458-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008fc00000-0x000000008fffffff] reserved
lines 1-65...skipping...
-- Logs begin at Fri 2020-06-26 10:50:10 AEST, end at Fri 2020-06-26 20:50:09 AEST. --
Jun 26 11:34:52 Media-Linux kernel: microcode: microcode updated early to revision 0xd6, date = 2020-04-23
Jun 26 11:34:52 Media-Linux kernel: Linux version 5.4.0-39-generic (buildd@lcy01-amd64-016) (gcc version 9.3.0 (Ubuntu 9.3.0-10ubuntu2)) #43-Ubuntu SMP Fri Jun 19 10:28:31 UTC 2020 (Ubuntu 5.4.0-39.43-generic 5.4.41)
Jun 26 11:34:52 Media-Linux kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-39-generic root=UUID=0c979a5a-01d7-4186-9626-b5418a7ee52a ro quiet splash
Jun 26 11:34:52 Media-Linux kernel: KERNEL supported cpus:
Jun 26 11:34:52 Media-Linux kernel:   Intel GenuineIntel
Jun 26 11:34:52 Media-Linux kernel:   AMD AuthenticAMD
Jun 26 11:34:52 Media-Linux kernel:   Hygon HygonGenuine
Jun 26 11:34:52 Media-Linux kernel:   Centaur CentaurHauls
Jun 26 11:34:52 Media-Linux kernel:   zhaoxin   Shanghai  
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jun 26 11:34:52 Media-Linux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jun 26 11:34:52 Media-Linux kernel: BIOS-provided physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: NX (Execute Disable) protection: active
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878fa018-0x87919457] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x878e9018-0x878f9e57] usable ==> usable
Jun 26 11:34:52 Media-Linux kernel: extended physical RAM map:
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000000100000-0x00000000878e9017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878e9018-0x00000000878f9e57] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878f9e58-0x00000000878fa017] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000878fa018-0x0000000087919457] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000087919458-0x000000008810efff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008810f000-0x000000008810ffff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088110000-0x0000000088110fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000088111000-0x000000008e9b4fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008e9b5000-0x000000008ed11fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008ed12000-0x000000008eea6fff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008eea7000-0x000000008f512fff] ACPI NVS
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008f513000-0x000000008fbfefff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008fbff000-0x000000008fbfffff] usable
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x000000008fc00000-0x000000008fffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 26 11:34:52 Media-Linux kernel: reserve setup_data: [mem 0x0000000100000000-0x000000026effffff] usable
Jun 26 11:34:52 Media-Linux kernel: efi: EFI v2.50 by American Megatrends
Jun 26 11:34:52 Media-Linux kernel: efi:  ACPI=0x8f4a7000  ACPI 2.0=0x8f4a7000  SMBIOS=0xf05e0  SMBIOS 3.0=0xf0600  MPS=0xfc460  ESRT=0x8d7383d8 
Jun 26 11:34:52 Media-Linux kernel: secureboot: Secure boot disabled
Jun 26 11:34:52 Media-Linux kernel: SMBIOS 3.0.0 present.
Jun 26 11:34:52 Media-Linux kernel: DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./B250 Gaming K4, BIOS P2.20 02/23/2018
Jun 26 11:34:52 Media-Linux kernel: tsc: Detected 3400.000 MHz processor
Jun 26 11:34:52 Media-Linux kernel: tsc: Detected 3399.906 MHz TSC
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 26 11:34:52 Media-Linux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 26 11:34:52 Media-Linux kernel: last_pfn = 0x26f000 max_arch_pfn = 0x400000000
Jun 26 11:34:52 Media-Linux kernel: MTRR default type: write-back
Jun 26 11:34:52 Media-Linux kernel: MTRR fixed ranges enabled:
Jun 26 11:34:52 Media-Linux kernel:   00000-9FFFF write-back
Jun 26 11:34:52 Media-Linux kernel:   A0000-BFFFF uncachable
Jun 26 11:34:52 Media-Linux kernel:   C0000-FFFFF write-protect
Jun 26 11:34:52 Media-Linux kernel: MTRR variable ranges enabled:
Jun 26 11:34:52 Media-Linux kernel:   0 base 00C0000000 mask 7FC0000000 uncachable
Jun 26 11:34:52 Media-Linux kernel:   1 base 00A0000000 mask 7FE0000000 uncachable
Jun 26 11:34:52 Media-Linux kernel:   2 base 0090000000 mask 7FF0000000 uncachable
Jun 26 11:34:52 Media-Linux kernel:   3 disabled
Jun 26 11:34:52 Media-Linux kernel:   4 disabled
Jun 26 11:34:52 Media-Linux kernel:   5 disabled
Jun 26 11:34:52 Media-Linux kernel:   6 disabled
Jun 26 11:34:52 Media-Linux kernel:   7 disabled
Jun 26 11:34:52 Media-Linux kernel:   8 disabled
Jun 26 11:34:52 Media-Linux kernel:   9 disabled
Jun 26 11:34:52 Media-Linux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 26 11:34:52 Media-Linux kernel: last_pfn = 0x8fc00 max_arch_pfn = 0x400000000
Jun 26 11:34:52 Media-Linux kernel: found SMP MP-table at [mem 0x000fc740-0x000fc74f]
Jun 26 11:34:52 Media-Linux kernel: esrt: Reserving ESRT space from 0x000000008d7383d8 to 0x000000008d738410.
Jun 26 11:34:52 Media-Linux kernel: e820: update [mem 0x8d738000-0x8d738fff] usable ==> reserved
Jun 26 11:34:52 Media-Linux kernel: check: Scanning 1 areas for low memory corruption
Jun 26 11:34:52 Media-Linux kernel: Using GB pages for direct mapping
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a401000, 0x0a401fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a402000, 0x0a402fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a403000, 0x0a403fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a404000, 0x0a404fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a405000, 0x0a405fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a406000, 0x0a406fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a407000, 0x0a407fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a408000, 0x0a408fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: BRK [0x0a409000, 0x0a409fff] PGTABLE
Jun 26 11:34:52 Media-Linux kernel: secureboot: Secure boot disabled
Jun 26 11:34:52 Media-Linux kernel: RAMDISK: [mem 0x3b0e8000-0x3fffdfff]
Jun 26 11:34:52 Media-Linux kernel: ACPI: Early table checksum verification disabled
Jun 26 11:34:52 Media-Linux kernel: ACPI: RSDP 0x000000008F4A7000 000024 (v02 ALASKA)
Jun 26 11:34:52 Media-Linux kernel: ACPI: XSDT 0x000000008F4A70A0 0000C4 (v01 ALASKA A M I    01072009 AMI  00010013)
Jun 26 11:34:52 Media-Linux kernel: ACPI: FACP 0x000000008F4CACA8 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
lines 1-120
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

That doesn't work. You as specified are by the journalctl -b -1 command placed in the viewer less. You type /TV<enter> to search for the phrase "TV". If found, use "n" for the next, and see if anything bad is reported.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

How's this?

Code: Select all

Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Turn on/off TV on boot/shutdown...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Manage, Install and Generate Color Profiles...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Regular background program processing daemon...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Make remote CUPS printers available locally...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Create final runtime dir for shutdown pivot root...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Getty on tty1...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping LSB: Record successful boot for GRUB...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping LSB: disk temperature monitoring daemon...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping irqbalance daemon...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Tool to automatically collect and submit kernel crash signatures...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Light Display Manager...
Jun 26 12:04:20 Media-Linux systemd[1]: lm-sensors.service: Succeeded.
Jun 26 12:04:20 Media-Linux NetworkManager[810]: <info>  [1593137060.7495] modem-manager: ModemManager no longer available
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Initialize hardware monitoring sensors.
Jun 26 12:04:20 Media-Linux ModemManager[899]: <info>  ModemManager is shut down
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Dispatcher daemon for systemd-networkd...
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: Received signal 15
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping NVIDIA Persistence Daemon...
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: Socket closed.
Jun 26 12:04:20 Media-Linux systemd[1]: openvpn.service: Succeeded.
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: PID file unlocked.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped OpenVPN service.
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: PID file closed.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping System Logging Service...
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: The daemon no longer has permission to remove its runtime data directory /var/run/nvidia-persistenced
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
Jun 26 12:04:20 Media-Linux nvidia-persistenced[839]: Shutdown (839)
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Load/Save Random Seed...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping TeamViewer remote control daemon...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Ubuntu system adjustments...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Disk Manager...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Daemon for power management...
Jun 26 12:04:20 Media-Linux systemd[1]: root-.cache-gvfs.mount: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Unmounted /root/.cache/gvfs.
Jun 26 12:04:20 Media-Linux systemd[1]: root-.cache-doc.mount: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Unmounted /root/.cache/doc.
Jun 26 12:04:20 Media-Linux systemd[1]: accounts-daemon.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Accounts Service.
Jun 26 12:04:20 Media-Linux systemd[1]: cron.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Regular background program processing daemon.
Jun 26 12:04:20 Media-Linux systemd[1]: irqbalance.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped irqbalance daemon.
Jun 26 12:04:20 Media-Linux systemd[1]: networkd-dispatcher.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Dispatcher daemon for systemd-networkd.
Jun 26 12:04:20 Media-Linux systemd[1]: ModemManager.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Modem Manager.
Jun 26 12:04:20 Media-Linux rsyslogd[842]: [origin software="rsyslogd" swVersion="8.2001.0" x-pid="842" x-info="https://www.rsyslog.com"] exiting on signal 15.
Jun 26 12:04:20 Media-Linux systemd[1]: getty@tty1.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Getty on tty1.
Jun 26 12:04:20 Media-Linux systemd[1]: rtkit-daemon.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
Jun 26 12:04:20 Media-Linux systemd[1]: nvidia-persistenced.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped NVIDIA Persistence Daemon.
Jun 26 12:04:20 Media-Linux systemd[1]: kerneloops.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Tool to automatically collect and submit kernel crash signatures.
Jun 26 12:04:20 Media-Linux systemd[1]: rsyslog.service: Succeeded.
Jun 26 12:04:20 Media-Linux lightdm[1003]: pam_unix(lightdm-autologin:session): session closed for user media
Jun 26 12:04:20 Media-Linux blkdeactivate[2579]: Deactivating block devices:
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped System Logging Service.
Jun 26 12:04:20 Media-Linux systemd[1]: upower.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Daemon for power management.
Jun 26 12:04:20 Media-Linux systemd[1]: colord.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Manage, Install and Generate Color Profiles.
Jun 26 12:04:20 Media-Linux systemd[1]: alsa-restore.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Save/Restore Sound Card State.
Jun 26 12:04:20 Media-Linux bluetoothd[802]: Stopping SDP server
Jun 26 12:04:20 Media-Linux bluetoothd[802]: Exit
Jun 26 12:04:20 Media-Linux systemd[1]: bluetooth.service: Succeeded.
Jun 26 12:04:20 Media-Linux com.teamviewer.TeamViewer[1426]: TeamViewer: Fatal IO error 17 (File exists) on X server :0.
Jun 26 12:04:20 Media-Linux com.teamviewer.TeamViewer[1426]: QObject::~QObject: Timers cannot be stopped from another thread
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Bluetooth service.
Jun 26 12:04:20 Media-Linux systemd[1]: Removed slice system-getty.slice.
Jun 26 12:04:20 Media-Linux com.teamviewer.TeamViewer[1426]: terminate called without an active exception
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped target Host and Network Name Lookups.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped target System Time Synchronized.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped target System Time Set.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Authorization Manager...
Jun 26 12:04:20 Media-Linux udisksd[850]: udisks daemon version 2.8.4 exiting
Jun 26 12:04:20 Media-Linux com.teamviewer.TeamViewer.Desktop[1684]: terminate called without an active exception
Jun 26 12:04:20 Media-Linux unknown[1757]: gnome-terminal-server: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
Jun 26 12:04:20 Media-Linux systemd[1008]: gnome-terminal-server.service: Main process exited, code=exited, status=1/FAILURE
Jun 26 12:04:20 Media-Linux systemd[1008]: gnome-terminal-server.service: Failed with result 'exit-code'.
Jun 26 12:04:20 Media-Linux systemd[1008]: vte-spawn-b1bf1999-831a-4c85-bfda-39fbe1acbcd2.scope: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1008]: vte-spawn-6b10d74e-ed22-4baf-bed1-354ba2285558.scope: Succeeded.
Jun 26 12:04:20 Media-Linux kernel: show_signal_msg: 15 callbacks suppressed
Jun 26 12:04:20 Media-Linux kernel: TeamViewer_Desk[1700]: segfault at 7f986009a1a2 ip 00007f986018ac40 sp 00007f9842ffa9d0 error 4 in libgcc_s.so.1[7f986017e000+12000]
Jun 26 12:04:20 Media-Linux kernel: Code: 0f b6 f0 4c 89 e7 e8 4f f1 ff ff 48 8b 44 24 18 49 89 84 24 a0 00 00 00 e9 2e fe ff ff 0f 1f 44 00 00 49 8b 84 24 98 00 00 00 <80> 38 48 0f 85 57 ff ff ff 48 ba c7 c0 0f 00 00 00 0f 05 48 39 50
Jun 26 12:04:20 Media-Linux systemd[1]: polkit.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Authorization Manager.
Jun 26 12:04:20 Media-Linux systemd[1]: udisks2.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Disk Manager.
Jun 26 12:04:20 Media-Linux systemd[1]: cups-browsed.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Make remote CUPS printers available locally.
Jun 26 12:04:20 Media-Linux systemd[1]: blk-availability.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Availability of block devices.
Jun 26 12:04:20 Media-Linux systemd[1]: hddtemp.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped LSB: disk temperature monitoring daemon.
Jun 26 12:04:20 Media-Linux systemd[1]: systemd-random-seed.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Load/Save Random Seed.
Jun 26 12:04:20 Media-Linux systemd[1]: ubuntu-system-adjustments.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Ubuntu system adjustments.
Jun 26 12:04:20 Media-Linux systemd[1]: Requested transaction contradicts existing jobs: Transaction for systemd-coredump@0-2661-0.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jun 26 12:04:20 Media-Linux systemd[1]: systemd-coredump.socket: Failed to queue service startup job (Maybe the service file is missing or not a non-template unit?): Transaction for systemd-coredump@0-2661-0.service/start is destructive (shutdown.target has 'start' job queued, but 'stop' is included in transaction).
Jun 26 12:04:20 Media-Linux systemd[1]: systemd-coredump.socket: Failed with result 'resources'.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Avahi mDNS/DNS-SD Stack...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping CUPS Scheduler...
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: Got SIGTERM, quitting.
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: Leaving mDNS multicast group on interface enp0s31f6.IPv6 with address fe80::6834:5c59:7901:8940.
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: Leaving mDNS multicast group on interface enp0s31f6.IPv4 with address 192.168.1.8.
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: Leaving mDNS multicast group on interface lo.IPv6 with address ::1.
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: Leaving mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Jun 26 12:04:20 Media-Linux systemd[1]: grub-common.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped LSB: Record successful boot for GRUB.
Jun 26 12:04:20 Media-Linux systemd[1]: session-c1.scope: Succeeded.
Jun 26 12:04:20 Media-Linux avahi-daemon[801]: avahi-daemon 0.7 exiting.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Session c1 of user media.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Login Service...
Jun 26 12:04:20 Media-Linux systemd[1]: Stopping User Manager for UID 1000...
Jun 26 12:04:20 Media-Linux systemd-logind[845]: Removed session c1.
Jun 26 12:04:20 Media-Linux systemd[1]: avahi-daemon.service: Succeeded.
Jun 26 12:04:20 Media-Linux systemd[1]: Stopped Avahi mDNS/DNS-SD Stack.
...skipping...
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             514]        << Broadcast (F) -> TV (0): POLL
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [             514]        << f0
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             514]        setting the line timeout to 3
Jun 26 12:04:21 Media-Linux lightdm[2761]: Error: can't open /lib/modules/5.4.0-39-generic/updates/dkms
Jun 26 12:04:21 Media-Linux lightdm[2761]: Error: can't open /lib/modules/5.4.0-39-generic/updates/dkms
Jun 26 12:04:21 Media-Linux systemd[1]: lightdm.service: Succeeded.
Jun 26 12:04:21 Media-Linux systemd[1]: Stopped Light Display Manager.
Jun 26 12:04:21 Media-Linux systemd[1]: Starting Show Plymouth Reboot Screen...
Jun 26 12:04:21 Media-Linux systemd[1]: Received SIGRTMIN+20 from PID 2784 (plymouthd).
Jun 26 12:04:21 Media-Linux systemd[1]: Started Show Plymouth Reboot Screen.
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             654]        >> POLL sent
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             654]        TV (0): device status changed into 'present'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             654]        << requesting vendor ID of 'TV' (0)
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [             654]        << f0:8c
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [             906]        >> 0f:87:00:00:f0
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        TV (0): vendor = Samsung (0000f0)
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        expected response received (87: device vendor id)
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        >> TV (0) -> Broadcast (F): device vendor id (87)
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        replacing the command handler for device 'TV' (0)
Jun 26 12:04:21 Media-Linux sh[2590]: NOTICE:  [             906]        registering new CEC client - v4.0.4
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        detecting logical address for type 'recording device'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        trying logical address 'Recorder 1'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             906]        << Recorder 1 (1) -> Recorder 1 (1): POLL
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [             906]        << 11
Jun 26 12:04:21 Media-Linux systemd[1]: acpid.service: Succeeded.
Jun 26 12:04:21 Media-Linux systemd[1]: Stopped ACPI event daemon.
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [             991]        CEC transmission - received response - TRANSMIT_FAILED_ACK
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [             991]        << 11
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1075]        CEC transmission - received response - TRANSMIT_FAILED_ACK
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        >> POLL not sent
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        using logical address 'Recorder 1'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        Recorder 1 (1): device status changed into 'handled by libCEC'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        Recorder 1 (1): power status changed from 'unknown' to 'on'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        Recorder 1 (1): vendor = Pulse Eight (001582)
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        Recorder 1 (1): CEC version 1.4
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        AllocateLogicalAddresses - device '0', type 'recording device', LA '1'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1076]        setting ackmask to  2
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        Recorder 1 (1): osd name set to 'CECTester'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        Recorder 1 (1): menu language set to 'eng'
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - trying to get the physical address via ADL
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - ADL returned physical address 0000
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - trying to get the physical address via nvidia driver
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - nvidia driver returned physical address 0000
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - trying to get the physical address via drm files
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - drm files returned physical address 0000
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - trying to get the physical address from the OS
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        GetPhysicalAddress - OS returned physical address 0000
Jun 26 12:04:21 Media-Linux sh[2590]: NOTICE:  [            1131]        setting HDMI port to 1 on device TV (0)
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        Recorder 1 (1): physical address changed from ffff to 1000
Jun 26 12:04:21 Media-Linux sh[2590]: DEBUG:   [            1131]        << Recorder 1 (1) -> broadcast (F): physical address 1000
Jun 26 12:04:21 Media-Linux sh[2590]: TRAFFIC: [            1131]        << 1f:84:10:00:01
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1351]        using persisted autonomous mode setting: 'disabled'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1406]        using persisted CEC version setting: '1.4'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1461]        using persisted logical address setting: 'Recorder 1'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1517]        using persisted device type setting: 'recording device'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1522]        using persisted logical address mask setting: '206'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1592]        using persisted physical address setting: '1000'
Jun 26 12:04:22 Media-Linux sh[2590]: NOTICE:  [            1592]        CEC client registered: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , base device: TV (0), HDMI port number: 1, physical address: 1.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1592]        << Recorder 1 (1) -> TV (0): OSD name 'CECTester'
Jun 26 12:04:22 Media-Linux sh[2590]: TRAFFIC: [            1592]        << 10:47:43:45:43:54:65:73:74:65:72
Jun 26 12:04:22 Media-Linux systemd-coredump[2788]: Failed to connect to coredump service: Connection refused
Jun 26 12:04:22 Media-Linux systemd[1008]: dbus.service: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Stopped D-Bus User Message Bus.
Jun 26 12:04:22 Media-Linux systemd[1008]: Stopped target Basic System.
Jun 26 12:04:22 Media-Linux systemd[1008]: Stopped target Paths.
Jun 26 12:04:22 Media-Linux systemd[1008]: Stopped target Sockets.
Jun 26 12:04:22 Media-Linux systemd[1008]: Stopped target Timers.
Jun 26 12:04:22 Media-Linux systemd[1008]: dbus.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed D-Bus User Message Bus Socket.
Jun 26 12:04:22 Media-Linux systemd[1008]: dirmngr.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed GnuPG network certificate management daemon.
Jun 26 12:04:22 Media-Linux systemd[1008]: gpg-agent-browser.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 26 12:04:22 Media-Linux systemd[1008]: gpg-agent-extra.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 26 12:04:22 Media-Linux systemd[1008]: gpg-agent-ssh.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 26 12:04:22 Media-Linux systemd[1008]: gpg-agent.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 26 12:04:22 Media-Linux systemd[1008]: pk-debconf-helper.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed debconf communication socket.
Jun 26 12:04:22 Media-Linux systemd[1008]: pulseaudio.socket: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Closed Sound System.
Jun 26 12:04:22 Media-Linux systemd[1008]: Reached target Shutdown.
Jun 26 12:04:22 Media-Linux systemd[1008]: systemd-exit.service: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1008]: Finished Exit the Session.
Jun 26 12:04:22 Media-Linux systemd[1008]: Reached target Exit the Session.
Jun 26 12:04:22 Media-Linux systemd[1]: user@1000.service: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopped User Manager for UID 1000.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopping User Runtime Directory /run/user/1000...
Jun 26 12:04:22 Media-Linux systemd[1]: run-user-1000.mount: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1]: Unmounted /run/user/1000.
Jun 26 12:04:22 Media-Linux systemd[1]: user-runtime-dir@1000.service: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopped User Runtime Directory /run/user/1000.
Jun 26 12:04:22 Media-Linux systemd[1]: Removed slice User Slice of UID 1000.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopping Permit User Sessions...
Jun 26 12:04:22 Media-Linux systemd[1]: systemd-user-sessions.service: Succeeded.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopped Permit User Sessions.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopped target User and Group Name Lookups.
Jun 26 12:04:22 Media-Linux systemd[1]: Stopped target Remote File Systems.
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            1919]        << requesting power status of 'TV' (0)
Jun 26 12:04:22 Media-Linux sh[2590]: TRAFFIC: [            1919]        << 10:8f
Jun 26 12:04:22 Media-Linux sh[2590]: TRAFFIC: [            2119]        >> 01:90:00
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2119]        TV (0): power status changed from 'unknown' to 'on'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2119]        expected response received (90: report power status)
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2119]        >> TV (0) -> Recorder 1 (1): report power status (90)
Jun 26 12:04:22 Media-Linux sh[2590]: NOTICE:  [            2119]        << putting 'TV' (0) in standby mode
Jun 26 12:04:22 Media-Linux sh[2590]: TRAFFIC: [            2119]        << 10:36
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        unregistering all CEC clients
Jun 26 12:04:22 Media-Linux sh[2590]: NOTICE:  [            2174]        unregistering client: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , base device: TV (0), HDMI port number: 1, physical address: 1.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        Recorder 1 (1): power status changed from 'on' to 'unknown'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        Recorder 1 (1): vendor = Unknown (000000)
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        Recorder 1 (1): CEC version unknown
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        Recorder 1 (1): osd name set to 'Recorder 1'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        Recorder 1 (1): device status changed into 'unknown'
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2174]        setting ackmask to  0
Jun 26 12:04:22 Media-Linux sh[2590]: DEBUG:   [            2229]        turning controlled mode off
Jun 26 12:04:23 Media-Linux sh[2590]: DEBUG:   [            2284]        unregistering all CEC clients
Jun 26 12:04:23 Media-Linux sh[2590]: DEBUG:   [            2565]        communication thread ended
Jun 26 12:04:26 Media-Linux systemd[1]: teamviewerd.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped TeamViewer remote control daemon.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped target Network is Online.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped target Network.
Jun 26 12:04:26 Media-Linux systemd[1]: NetworkManager-wait-online.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped Network Manager Wait Online.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopping Network Manager...
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2358] caught SIGTERM, shutting down normally.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopping Raise network interfaces...
Jun 26 12:04:26 Media-Linux systemd[1]: Stopping Network Name Resolution...
Jun 26 12:04:26 Media-Linux systemd[1]: Stopping WPA supplicant...
Jun 26 12:04:26 Media-Linux systemd[1]: wpa_supplicant.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped WPA supplicant.
Jun 26 12:04:26 Media-Linux systemd[1]: systemd-resolved.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped Network Name Resolution.
Jun 26 12:04:26 Media-Linux ifdown[2801]: run-parts: failed to stat component /etc/network/if-post-down.d/avahi-daemon: No such file or directory
Jun 26 12:04:26 Media-Linux systemd[1]: networking.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped Raise network interfaces.
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2534] dhcp4 (enp0s31f6): canceled DHCP transaction
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2534] dhcp4 (enp0s31f6): state changed bound -> done
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2534] device (enp0s31f6): DHCPv4: trying to acquire a new lease within 90 seconds
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2538] manager: NetworkManager state is now CONNECTED_SITE
Jun 26 12:04:26 Media-Linux dbus-daemon[809]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.11' (uid=0 pid=810 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Jun 26 12:04:26 Media-Linux dbus-daemon[809]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Refusing activation, D-Bus is shutting down.
Jun 26 12:04:26 Media-Linux NetworkManager[810]: <info>  [1593137066.2725] exiting (success)
Jun 26 12:04:26 Media-Linux systemd[1]: NetworkManager.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped Network Manager.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopping D-Bus System Message Bus...
Jun 26 12:04:26 Media-Linux systemd[1]: dbus.service: Succeeded.
Jun 26 12:04:26 Media-Linux systemd[1]: Stopped D-Bus System Message Bus.
Jun 26 12:04:29 Media-Linux systemd[1]: cec-client.service: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped Turn on/off TV on boot/shutdown.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped target Basic System.
Jun 26 12:04:29 Media-Linux systemd[1]: systemd-ask-password-plymouth.path: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped Forward Password Requests to Plymouth Directory Watch.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped target Paths.
Jun 26 12:04:29 Media-Linux systemd[1]: acpid.path: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped ACPI Events Check.
Jun 26 12:04:29 Media-Linux systemd[1]: cups.path: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped CUPS Scheduler.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped target Slices.
Jun 26 12:04:29 Media-Linux systemd[1]: Removed slice User and Session Slice.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped target Sockets.
Jun 26 12:04:29 Media-Linux systemd[1]: acpid.socket: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Closed ACPID Listen Socket.
Jun 26 12:04:29 Media-Linux systemd[1]: avahi-daemon.socket: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Closed Avahi mDNS/DNS-SD Stack Activation Socket.
Jun 26 12:04:29 Media-Linux systemd[1]: cups.socket: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Closed CUPS Scheduler.
lines 2120-2239/2295 98%
Again, the TV is turning on fine, just won't turn off. I even put the 10 second shutdown delay in. All that does is shuts down the desktop, black screen for the 10 seconds and then PC off, screen staying on.
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

Better. Condensed,

Code: Select all

Jun 26 12:04:20 Media-Linux systemd[1]: Stopping Turn on/off TV on boot/shutdown...
[ ... ]
Jun 26 12:04:22 Media-Linux sh[2590]: NOTICE:  [            2119]        << putting 'TV' (0) in standby mode
[ ... ]
Jun 26 12:04:23 Media-Linux sh[2590]: DEBUG:   [            2565]        communication thread ended
[ ... ]
Jun 26 12:04:29 Media-Linux systemd[1]: cec-client.service: Succeeded.
Jun 26 12:04:29 Media-Linux systemd[1]: Stopped Turn on/off TV on boot/shutdown.
I.e., as far as it knows, all is fine and dandy. Can you explicitly confirm that from a command line it works to do

Code: Select all

echo standby 0 | sudo cec-client -s -d 1
It it does I'll have to wait until tomorrow to hook up a TV via HDMI and see what the <bleep> is going on, if same here in the first place.
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

Have to be away. Please also specify, if not already somewhere in the above, what the HDMI port the TV is on is itself on: Nvidia card? Output of inxi -Gx will be useful.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

I explicitly confirm that:

Code: Select all

echo standby 0 | sudo cec-client -s -d 1
works from the terminal.

The TV is connected to a pulse-eight HDMI adapter (https://www.pulse-eight.com/p/104/usb-hdmi-cec-adapter) which is then connected to the PC via USB and the GPU via another HDMI cable.

Here is the information on the video card.

Code: Select all

media@Media-Linux:~$ inxi -Gx
Graphics:
  Device-1: NVIDIA GP108 [GeForce GT 1030] vendor: Gigabyte driver: nvidia 
  v: 440.100 bus ID: 01:00.0 
  Display: x11 server: X.Org 1.20.8 driver: nvidia 
  unloaded: fbdev,modesetting,nouveau,vesa tty: N/A 
  OpenGL: renderer: GeForce GT 1030/PCIe/SSE2 v: 4.6.0 NVIDIA 440.100 
  direct render: Yes 
Also happy to pay to you connect to the PC yourself via Team Viewer and have a poke around, accept Bitcoin?
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

Excuse brevity; comment from mobile device. Was starting to suspect Nvida. Try if switching back to nouveau driver makes diff. Will read tomorrow.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

Switching to nouveau driver has the same results as Nvidia, turns on with system boot, doesn't turn off on system shutdown.

No worries, take care mate. Talk to you tomorrow.
rene
Level 20
Level 20
Posts: 12212
Joined: Sun Mar 27, 2016 6:58 pm

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by rene »

OK, although the pulse-eight website is a bit annoyingly implicit about it it seems that the USB connection is used to merge its HDMI-IN and any CEC commands it's instructed to inject over its USB connection to produce HDMI-OUT. That the point of its existence is many/all PC graphics cards not allowing for CEC-injection on their HDMI ports directly. Certainly here cec-client does not recognize anything to use even with a TV connected over HDMI to my PC, so, fine, although it means I still can't test locally.

Any case this would be to say we need USB and the HDMI port itself up and running / powered. I noticed before in your log that communication with the adapter ended relatively early in the shutdown sequence and moreover that cec-client seemed to think all fine, so this is assumedly to say we're not taking about e.g. USB powersave on shutdown. This then seems to leave the HDMI port itself as the issue; your graphics driver having the card do something to its HDMI-port on graphics shutdown which from that point on has the CEC-injection non-functional. I.e., pulling some line down. Why and/or what and does that make sense in the first place in the case of HDMI? I dunno, but you try and come up with a halfway reasonable hypothesis otherwise: the e.g. sleep 10 not working would say we're indeed not talking about an adapter-sides delay here.

This and my thoughts about Nvidia's binary driver was the reason I wanted you to try nouveau. Also not but I'm still not certain: nouveau might just do/cause same on same hardware of course,

MrEen's suggested route of an "on shutdown" application in the Xfce case seems to not be functional on 19.3 Xfce here; systemd's potential graphical.target is as said non-functional on at least Ubuntu/Mint anyway and systemd-inhibit seems to to do eff-all as well. So lovely then. Can hardly contain my enthusiasm.

Uhhhh...

Don't believe that having remote access is going to do a lot. Let's first see what the command line echo standby 0 | sudo cec-client -s in fact reports (i.e., without any -d parameter) so as to compare with the earlier journal bit. I understand that this turns off your TV so if it's an issue to have it wake up again after doing that, supposedly

Code: Select all

echo standby 0 | sudo cec-client -s; sleep 10; echo on 0 | sudo cec-client -s
after which you'd supposedly have a lot of CEC debug info on your console to post back.

It would also be interesting to have you edit as root /etc/default/grub, add nomodeset to the GRUB_CMDLINE_LINUX_DEFAULT="..." string, save, run sudo update-grub and reboot twice. This will cause your system to restart without nvidia/nouveau and is just a test to see if the existing systemd cec-client.service works then.
PsychedelicHell

Re: How can I run "echo 'on 0' | cec-client -s -d 1" on system boot?

Post by PsychedelicHell »

Code: Select all

echo standby 0 | sudo cec-client -s
returns with

Code: Select all

media@Media-Linux:~$ echo standby 0 | sudo cec-client -s
[sudo] password for media:  
opening a connection to the CEC adapter...
DEBUG:   [             104]	Broadcast (F): osd name set to 'Broadcast'
DEBUG:   [             105]	connection opened, clearing any previous input and waiting for active transmissions to end before starting
DEBUG:   [            1108]	communication thread started
DEBUG:   [            1218]	turning controlled mode on
NOTICE:  [            1390]	connection opened
DEBUG:   [            1390]	<< Broadcast (F) -> TV (0): POLL
TRAFFIC: [            1390]	<< f0
DEBUG:   [            1390]	setting the line timeout to 3
DEBUG:   [            1390]	processor thread started
DEBUG:   [            1530]	>> POLL sent
DEBUG:   [            1530]	TV (0): device status changed into 'present'
DEBUG:   [            1530]	<< requesting vendor ID of 'TV' (0)
TRAFFIC: [            1530]	<< f0:8c
TRAFFIC: [            1783]	>> 0f:87:00:00:f0
DEBUG:   [            1783]	TV (0): vendor = Samsung (0000f0)
DEBUG:   [            1783]	expected response received (87: device vendor id)
DEBUG:   [            1783]	replacing the command handler for device 'TV' (0)
NOTICE:  [            1783]	registering new CEC client - v4.0.4
DEBUG:   [            1783]	detecting logical address for type 'recording device'
DEBUG:   [            1783]	trying logical address 'Recorder 1'
DEBUG:   [            1783]	>> TV (0) -> Broadcast (F): device vendor id (87)
DEBUG:   [            1783]	<< Recorder 1 (1) -> Recorder 1 (1): POLL
TRAFFIC: [            1783]	<< 11
DEBUG:   [            1868]	CEC transmission - received response - TRANSMIT_FAILED_ACK
TRAFFIC: [            1868]	<< 11
DEBUG:   [            1952]	CEC transmission - received response - TRANSMIT_FAILED_ACK
DEBUG:   [            1952]	>> POLL not sent
DEBUG:   [            1952]	using logical address 'Recorder 1'
DEBUG:   [            1952]	Recorder 1 (1): device status changed into 'handled by libCEC'
DEBUG:   [            1952]	Recorder 1 (1): power status changed from 'unknown' to 'on'
DEBUG:   [            1952]	Recorder 1 (1): vendor = Pulse Eight (001582)
DEBUG:   [            1952]	Recorder 1 (1): CEC version 1.4
DEBUG:   [            1952]	AllocateLogicalAddresses - device '0', type 'recording device', LA '1'
DEBUG:   [            1952]	setting ackmask to  2
DEBUG:   [            2008]	Recorder 1 (1): osd name set to 'CECTester'
DEBUG:   [            2008]	Recorder 1 (1): menu language set to 'eng'
DEBUG:   [            2008]	GetPhysicalAddress - trying to get the physical address via ADL
DEBUG:   [            2008]	GetPhysicalAddress - ADL returned physical address 0000
DEBUG:   [            2008]	GetPhysicalAddress - trying to get the physical address via nvidia driver
DEBUG:   [            2008]	GetPhysicalAddress - nvidia driver returned physical address 0000
DEBUG:   [            2008]	GetPhysicalAddress - trying to get the physical address via drm files
DEBUG:   [            2008]	GetPhysicalAddress - drm files returned physical address 0000
DEBUG:   [            2008]	GetPhysicalAddress - trying to get the physical address from the OS
DEBUG:   [            2009]	GetPhysicalAddress - OS returned physical address 4000
DEBUG:   [            2009]	AutodetectPhysicalAddress - autodetected physical address '4000'
DEBUG:   [            2009]	Recorder 1 (1): physical address changed from ffff to 4000
DEBUG:   [            2009]	<< Recorder 1 (1) -> broadcast (F): physical address 4000
TRAFFIC: [            2009]	<< 1f:84:40:00:01
DEBUG:   [            2230]	using persisted autonomous mode setting: 'disabled'
DEBUG:   [            2285]	using persisted CEC version setting: '1.4'
DEBUG:   [            2340]	using persisted logical address setting: 'Recorder 1'
DEBUG:   [            2396]	using persisted device type setting: 'recording device'
DEBUG:   [            2401]	using persisted logical address mask setting: '206'
DEBUG:   [            2471]	using persisted physical address setting: '4000'
DEBUG:   [            2471]	setting the OSD name to CECTester (previous: CEC Tray)
NOTICE:  [            2526]	CEC client registered: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            2526]	<< Recorder 1 (1) -> TV (0): OSD name 'CECTester'
TRAFFIC: [            2526]	<< 10:47:43:45:43:54:65:73:74:65:72
DEBUG:   [            2853]	<< requesting power status of 'TV' (0)
TRAFFIC: [            2853]	<< 10:8f
TRAFFIC: [            3053]	>> 01:90:01
DEBUG:   [            3053]	TV (0): power status changed from 'unknown' to 'standby'
DEBUG:   [            3053]	expected response received (90: report power status)
DEBUG:   [            3053]	>> TV (0) -> Recorder 1 (1): report power status (90)
NOTICE:  [            3053]	<< putting 'TV' (0) in standby mode
TRAFFIC: [            3053]	<< 10:36
DEBUG:   [            3107]	unregistering all CEC clients
NOTICE:  [            3108]	unregistering client: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            3108]	Recorder 1 (1): power status changed from 'on' to 'unknown'
DEBUG:   [            3108]	Recorder 1 (1): vendor = Unknown (000000)
DEBUG:   [            3108]	Recorder 1 (1): CEC version unknown
DEBUG:   [            3108]	Recorder 1 (1): osd name set to 'Recorder 1'
DEBUG:   [            3108]	Recorder 1 (1): device status changed into 'unknown'
DEBUG:   [            3108]	setting ackmask to  0
DEBUG:   [            3163]	turning controlled mode off
DEBUG:   [            3218]	unregistering all CEC clients
DEBUG:   [            3444]	communication thread ended
and

Code: Select all

echo standby 0 | sudo cec-client -s; sleep 10; echo on 0 | sudo cec-client -s

Code: Select all

media@Media-Linux:~$ echo standby 0 | sudo cec-client -s; sleep 10; echo on 0 | sudo cec-client -s
[sudo] password for media:  
opening a connection to the CEC adapter...
DEBUG:   [             120]	Broadcast (F): osd name set to 'Broadcast'
DEBUG:   [             121]	connection opened, clearing any previous input and waiting for active transmissions to end before starting
DEBUG:   [             126]	communication thread started
DEBUG:   [             237]	turning controlled mode on
NOTICE:  [             408]	connection opened
DEBUG:   [             408]	processor thread started
DEBUG:   [             408]	<< Broadcast (F) -> TV (0): POLL
TRAFFIC: [             408]	<< f0
DEBUG:   [             408]	setting the line timeout to 3
DEBUG:   [             549]	>> POLL sent
DEBUG:   [             549]	TV (0): device status changed into 'present'
DEBUG:   [             549]	<< requesting vendor ID of 'TV' (0)
TRAFFIC: [             549]	<< f0:8c
TRAFFIC: [             801]	>> 0f:87:00:00:f0
DEBUG:   [             801]	TV (0): vendor = Samsung (0000f0)
DEBUG:   [             801]	expected response received (87: device vendor id)
DEBUG:   [             801]	replacing the command handler for device 'TV' (0)
NOTICE:  [             801]	registering new CEC client - v4.0.4
DEBUG:   [             801]	>> TV (0) -> Broadcast (F): device vendor id (87)
DEBUG:   [             801]	detecting logical address for type 'recording device'
DEBUG:   [             801]	trying logical address 'Recorder 1'
DEBUG:   [             801]	<< Recorder 1 (1) -> Recorder 1 (1): POLL
TRAFFIC: [             802]	<< 11
DEBUG:   [             886]	CEC transmission - received response - TRANSMIT_FAILED_ACK
TRAFFIC: [             887]	<< 11
DEBUG:   [             971]	CEC transmission - received response - TRANSMIT_FAILED_ACK
DEBUG:   [             971]	>> POLL not sent
DEBUG:   [             971]	using logical address 'Recorder 1'
DEBUG:   [             971]	Recorder 1 (1): device status changed into 'handled by libCEC'
DEBUG:   [             971]	Recorder 1 (1): power status changed from 'unknown' to 'on'
DEBUG:   [             971]	Recorder 1 (1): vendor = Pulse Eight (001582)
DEBUG:   [             971]	Recorder 1 (1): CEC version 1.4
DEBUG:   [             971]	AllocateLogicalAddresses - device '0', type 'recording device', LA '1'
DEBUG:   [             972]	setting ackmask to  2
DEBUG:   [            1027]	Recorder 1 (1): osd name set to 'CECTester'
DEBUG:   [            1027]	Recorder 1 (1): menu language set to 'eng'
DEBUG:   [            1027]	GetPhysicalAddress - trying to get the physical address via ADL
DEBUG:   [            1027]	GetPhysicalAddress - ADL returned physical address 0000
DEBUG:   [            1027]	GetPhysicalAddress - trying to get the physical address via nvidia driver
DEBUG:   [            1027]	GetPhysicalAddress - nvidia driver returned physical address 0000
DEBUG:   [            1027]	GetPhysicalAddress - trying to get the physical address via drm files
DEBUG:   [            1027]	GetPhysicalAddress - drm files returned physical address 0000
DEBUG:   [            1028]	GetPhysicalAddress - trying to get the physical address from the OS
DEBUG:   [            1040]	GetPhysicalAddress - OS returned physical address 4000
DEBUG:   [            1041]	AutodetectPhysicalAddress - autodetected physical address '4000'
DEBUG:   [            1041]	Recorder 1 (1): physical address changed from ffff to 4000
DEBUG:   [            1041]	<< Recorder 1 (1) -> broadcast (F): physical address 4000
TRAFFIC: [            1041]	<< 1f:84:40:00:01
DEBUG:   [            1302]	using persisted autonomous mode setting: 'disabled'
DEBUG:   [            1358]	using persisted CEC version setting: '1.4'
DEBUG:   [            1413]	using persisted logical address setting: 'Recorder 1'
DEBUG:   [            1468]	using persisted device type setting: 'recording device'
DEBUG:   [            1473]	using persisted logical address mask setting: '206'
DEBUG:   [            1544]	using persisted physical address setting: '4000'
DEBUG:   [            1544]	setting the OSD name to CECTester (previous: CEC Tray)
NOTICE:  [            1599]	CEC client registered: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            1600]	<< Recorder 1 (1) -> TV (0): OSD name 'CECTester'
TRAFFIC: [            1600]	<< 10:47:43:45:43:54:65:73:74:65:72
DEBUG:   [            1926]	<< requesting power status of 'TV' (0)
TRAFFIC: [            1926]	<< 10:8f
TRAFFIC: [            2126]	>> 01:90:01
DEBUG:   [            2126]	TV (0): power status changed from 'unknown' to 'standby'
DEBUG:   [            2126]	>> TV (0) -> Recorder 1 (1): report power status (90)
DEBUG:   [            2126]	expected response received (90: report power status)
NOTICE:  [            2126]	<< putting 'TV' (0) in standby mode
TRAFFIC: [            2126]	<< 10:36
DEBUG:   [            2181]	unregistering all CEC clients
NOTICE:  [            2181]	unregistering client: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            2181]	Recorder 1 (1): power status changed from 'on' to 'unknown'
DEBUG:   [            2181]	Recorder 1 (1): vendor = Unknown (000000)
DEBUG:   [            2181]	Recorder 1 (1): CEC version unknown
DEBUG:   [            2181]	Recorder 1 (1): osd name set to 'Recorder 1'
DEBUG:   [            2181]	Recorder 1 (1): device status changed into 'unknown'
DEBUG:   [            2181]	setting ackmask to  0
DEBUG:   [            2236]	turning controlled mode off
DEBUG:   [            2291]	unregistering all CEC clients
DEBUG:   [            2462]	communication thread ended
opening a connection to the CEC adapter...
DEBUG:   [              99]	Broadcast (F): osd name set to 'Broadcast'
DEBUG:   [             100]	connection opened, clearing any previous input and waiting for active transmissions to end before starting
DEBUG:   [             105]	communication thread started
DEBUG:   [             215]	turning controlled mode on
NOTICE:  [             386]	connection opened
DEBUG:   [             386]	processor thread started
DEBUG:   [             386]	<< Broadcast (F) -> TV (0): POLL
TRAFFIC: [             387]	<< f0
DEBUG:   [             387]	setting the line timeout to 3
DEBUG:   [             527]	>> POLL sent
DEBUG:   [             527]	TV (0): device status changed into 'present'
DEBUG:   [             527]	<< requesting vendor ID of 'TV' (0)
TRAFFIC: [             527]	<< f0:8c
TRAFFIC: [             779]	>> 0f:87:00:00:f0
DEBUG:   [             779]	TV (0): vendor = Samsung (0000f0)
DEBUG:   [             779]	expected response received (87: device vendor id)
DEBUG:   [             779]	replacing the command handler for device 'TV' (0)
NOTICE:  [             779]	registering new CEC client - v4.0.4
DEBUG:   [             779]	detecting logical address for type 'recording device'
DEBUG:   [             779]	trying logical address 'Recorder 1'
DEBUG:   [             779]	>> TV (0) -> Broadcast (F): device vendor id (87)
DEBUG:   [             779]	<< Recorder 1 (1) -> Recorder 1 (1): POLL
TRAFFIC: [             779]	<< 11
DEBUG:   [             864]	CEC transmission - received response - TRANSMIT_FAILED_ACK
TRAFFIC: [             864]	<< 11
DEBUG:   [             948]	CEC transmission - received response - TRANSMIT_FAILED_ACK
DEBUG:   [             948]	>> POLL not sent
DEBUG:   [             948]	using logical address 'Recorder 1'
DEBUG:   [             948]	Recorder 1 (1): device status changed into 'handled by libCEC'
DEBUG:   [             948]	Recorder 1 (1): power status changed from 'unknown' to 'on'
DEBUG:   [             948]	Recorder 1 (1): vendor = Pulse Eight (001582)
DEBUG:   [             948]	Recorder 1 (1): CEC version 1.4
DEBUG:   [             948]	AllocateLogicalAddresses - device '0', type 'recording device', LA '1'
DEBUG:   [             948]	setting ackmask to  2
DEBUG:   [            1003]	Recorder 1 (1): osd name set to 'CECTester'
DEBUG:   [            1003]	Recorder 1 (1): menu language set to 'eng'
DEBUG:   [            1003]	GetPhysicalAddress - trying to get the physical address via ADL
DEBUG:   [            1004]	GetPhysicalAddress - ADL returned physical address 0000
DEBUG:   [            1004]	GetPhysicalAddress - trying to get the physical address via nvidia driver
DEBUG:   [            1004]	GetPhysicalAddress - nvidia driver returned physical address 0000
DEBUG:   [            1004]	GetPhysicalAddress - trying to get the physical address via drm files
DEBUG:   [            1004]	GetPhysicalAddress - drm files returned physical address 0000
DEBUG:   [            1004]	GetPhysicalAddress - trying to get the physical address from the OS
DEBUG:   [            1004]	GetPhysicalAddress - OS returned physical address 4000
DEBUG:   [            1004]	AutodetectPhysicalAddress - autodetected physical address '4000'
DEBUG:   [            1004]	Recorder 1 (1): physical address changed from ffff to 4000
DEBUG:   [            1004]	<< Recorder 1 (1) -> broadcast (F): physical address 4000
TRAFFIC: [            1004]	<< 1f:84:40:00:01
DEBUG:   [            1225]	using persisted autonomous mode setting: 'disabled'
DEBUG:   [            1281]	using persisted CEC version setting: '1.4'
DEBUG:   [            1336]	using persisted logical address setting: 'Recorder 1'
DEBUG:   [            1391]	using persisted device type setting: 'recording device'
DEBUG:   [            1397]	using persisted logical address mask setting: '206'
DEBUG:   [            1469]	using persisted physical address setting: '4000'
NOTICE:  [            1469]	CEC client registered: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            1469]	<< Recorder 1 (1) -> TV (0): OSD name 'CECTester'
TRAFFIC: [            1469]	<< 10:47:43:45:43:54:65:73:74:65:72
DEBUG:   [            1796]	<< requesting power status of 'TV' (0)
TRAFFIC: [            1796]	<< 10:8f
TRAFFIC: [            1995]	>> 01:90:01
DEBUG:   [            1995]	TV (0): power status changed from 'unknown' to 'standby'
DEBUG:   [            1995]	>> TV (0) -> Recorder 1 (1): report power status (90)
DEBUG:   [            1995]	expected response received (90: report power status)
NOTICE:  [            1995]	<< powering on 'TV' (0)
TRAFFIC: [            1995]	<< 10:04
DEBUG:   [            2050]	TV (0): power status changed from 'standby' to 'in transition from standby to on'
DEBUG:   [            2050]	unregistering all CEC clients
NOTICE:  [            2050]	unregistering client: libCEC version = 4.0.4, client version = 4.0.4, firmware version = 7, firmware build date: Wed Apr 13 10:36:11 2016 +0000, logical address(es) = Recorder 1 (1) , physical address: 4.0.0.0, compiled on Linux-4.4.0-176-generic ... , features: P8_USB, DRM, P8_detect, randr, Exynos, AOCEC
DEBUG:   [            2050]	Recorder 1 (1): power status changed from 'on' to 'unknown'
DEBUG:   [            2050]	Recorder 1 (1): vendor = Unknown (000000)
DEBUG:   [            2050]	Recorder 1 (1): CEC version unknown
DEBUG:   [            2050]	Recorder 1 (1): osd name set to 'Recorder 1'
DEBUG:   [            2050]	Recorder 1 (1): device status changed into 'unknown'
DEBUG:   [            2050]	setting ackmask to  0
DEBUG:   [            2105]	turning controlled mode off
DEBUG:   [            2160]	unregistering all CEC clients
DEBUG:   [            2442]	communication thread ended
media@Media-Linux:~$ 
As for modifying grub with

Code: Select all

nomodeset
the results are the same, screen turns on at boot, does not turn off on shutdown/restart.
Locked

Return to “Scripts & Bash”