分类 默认分类 下的文章

Ubuntu 22.04 安装 FFmpeg 6.x

打开shell输入下面的命令添加ffmpeg6的ppa源

sudo add-apt-repository ppa:savoury1/ffmpeg6

添加后安装ffmpeg大概率提示如图

2023-03-20T11:33:57.png

解决方法:添加ffmpeg4的ppa源

sudo add-apt-repository ppa:savoury1/ffmpeg4

ps: 我也不清楚为啥ffmpeg5和ffmpeg6的ppa源里面缺少依赖

新建一个bot.py在目录下,然后py bot.py启动

import nonebot
from nonebot.adapters.onebot.v11 import Adapter

nonebot.init()
driver = nonebot.get_driver()
driver.register_adapter(Adapter)

nonebot.load_plugins("src/plugins/")

nonebot.run()

树莓派4B - 安卓13说明

键盘按键映射按键
F1主屏幕
F2返回键
F3多任务
F4菜单键
F11音量减
F12音量加
GPIO映射
21上拉Power
21下拉开机进入RECovery
20上拉音量减
26上拉音量加

系统时间写入硬件

hwclock -w -f /dev/rtc0

拉取ssh密钥

adb root
adb pull /data/ssh/ssh_host_ed25519_key my_private_key

修改引导顺序

编辑 /boot/config.txt

#dtoverlay=android-sdcard
dtoverlay=android-usb

修改默认分辨率避免彩虹屏 /boot/resolution.txt

解决方法:管理员身份打开PowerShell执行以下命令

该命令CMD无效,无Powershell的机器可以手动到注册表添加相关项
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowDefaultCredentials -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowDefaultCredentialsDomain -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentials -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentialsDomain -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentialsWhenNTLMOnly -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowFreshCredentialsWhenNTLMOnlyDomain -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowSavedCredentials -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowSavedCredentialsDomain -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force
New-ItemProperty -Path HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\Credssp\PolicyDefaults\AllowSavedCredentialsWhenNTLMOnly -Name Hyper-V -PropertyType String -Value "Microsoft Virtual Console Service/*" -Force

原文链接: https://erwinbierens.com/rdcman-hyper-v-console/