Difference between revisions of "Template:UbuntuFocalDesktop-Common"
(updated by API) |
(updated by API) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
<br/> | <br/> | ||
Root:<br/> | Root:<br/> | ||
− | | + | User Name: root<br/> |
+ | Password: fa<br/> | ||
+ | ===Turn off auto-sleep and screen saver=== | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | sed -i 's/enableIdlenessWatcher=true/enableIdlenessWatcher=false/g' .config/lxqt/lxqt-powermanagement.conf | ||
+ | echo "mode: off" > ~/.xscreensaver | ||
+ | sudo reboot | ||
+ | </syntaxhighlight> | ||
+ | ===Set up auto login=== | ||
+ | Create dir and file: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | sudo mkdir /etc/sddm.conf.d | ||
+ | sudo vim /etc/sddm.conf.d/autologin | ||
+ | </syntaxhighlight> | ||
+ | The contents of the autologin file: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | [Autologin] | ||
+ | User=pi | ||
+ | Session=lxqt.desktop | ||
+ | Relogin=false | ||
+ | </syntaxhighlight> | ||
+ | Reboot. | ||
+ | ===Test Video Playback=== | ||
+ | * mpv | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | mpv ~/Videos/demo.mp4 | ||
+ | </syntaxhighlight> | ||
+ | * GStreamer Command Line | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | gst-play-1.0 ~/Videos/demo.mp4 --videosink=xvimagesink | ||
+ | </syntaxhighlight> | ||
+ | For more details, please search and refer to the official documentation <<rockchip_user_guide_linux_gstreamer_en.pdf>>. | ||
+ | ===Switching Audio Output Channel=== | ||
+ | To switch the audio output channel, go to '''"System Tools"''' -> '''"Qterminal"''',enter the following command in the terminal to check available audio output channels: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | pactl list sinks short | ||
+ | </syntaxhighlight> | ||
+ | On the NanoPC-T6, the results appear as follows. The string beginning with alsa_output in the second column is the value we will use: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | 0 alsa_output.platform-dp0-sound.stereo-fallback module-alsa-card.c s16le 2ch 44100Hz SUSPENDED | ||
+ | 1 alsa_output.platform-hdmi0-sound.stereo-fallback module-alsa-card.c s16le 2ch 48000Hz SUSPENDED | ||
+ | 2 alsa_output.platform-hdmi1-sound.stereo-fallback module-alsa-card.c s16le 2ch 44100Hz SUSPENDED | ||
+ | 3 alsa_output.platform-rt5616-sound.multichannel-output module-alsa-card.c s16le 2ch 44100Hz SUSPENDED | ||
+ | </syntaxhighlight> | ||
+ | Use an editor to modify the PulseAudio configuration file: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | sudo vim /etc/pulse/default.pa | ||
+ | </syntaxhighlight> | ||
+ | If you need to set the audio output to HDMI1, replace the following line at the end of the file: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | set-default-sink alsa_output.platform-hdmi0-sound.stereo-fallback | ||
+ | </syntaxhighlight> | ||
+ | with: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | set-default-sink alsa_output.platform-hdmi1-sound.stereo-fallback | ||
+ | </syntaxhighlight> | ||
+ | Save the file and restart the system for the changes to take effect. |
Latest revision as of 10:48, 30 October 2024
Contents
1 Account & Password
Regular Account:
User Name: pi
Password: pi
Root:
User Name: root
Password: fa
2 Turn off auto-sleep and screen saver
sed -i 's/enableIdlenessWatcher=true/enableIdlenessWatcher=false/g' .config/lxqt/lxqt-powermanagement.conf echo "mode: off" > ~/.xscreensaver sudo reboot
3 Set up auto login
Create dir and file:
sudo mkdir /etc/sddm.conf.d sudo vim /etc/sddm.conf.d/autologin
The contents of the autologin file:
[Autologin] User=pi Session=lxqt.desktop Relogin=false
Reboot.
4 Test Video Playback
- mpv
mpv ~/Videos/demo.mp4
- GStreamer Command Line
gst-play-1.0 ~/Videos/demo.mp4 --videosink=xvimagesink
For more details, please search and refer to the official documentation <<rockchip_user_guide_linux_gstreamer_en.pdf>>.
5 Switching Audio Output Channel
To switch the audio output channel, go to "System Tools" -> "Qterminal",enter the following command in the terminal to check available audio output channels:
pactl list sinks short
On the NanoPC-T6, the results appear as follows. The string beginning with alsa_output in the second column is the value we will use:
0 alsa_output.platform-dp0-sound.stereo-fallback module-alsa-card.c s16le 2ch 44100Hz SUSPENDED 1 alsa_output.platform-hdmi0-sound.stereo-fallback module-alsa-card.c s16le 2ch 48000Hz SUSPENDED 2 alsa_output.platform-hdmi1-sound.stereo-fallback module-alsa-card.c s16le 2ch 44100Hz SUSPENDED 3 alsa_output.platform-rt5616-sound.multichannel-output module-alsa-card.c s16le 2ch 44100Hz SUSPENDED
Use an editor to modify the PulseAudio configuration file:
sudo vim /etc/pulse/default.pa
If you need to set the audio output to HDMI1, replace the following line at the end of the file:
set-default-sink alsa_output.platform-hdmi0-sound.stereo-fallback
with:
set-default-sink alsa_output.platform-hdmi1-sound.stereo-fallback
Save the file and restart the system for the changes to take effect.