Why
HP 星Book 14 2024
零刻
铭凡
Driver Download
Why
Intel 大小核都多少年了,Windows 还没玩明白 🤣 加上 AMD 移动端核间延迟意外的高,游戏性能压根没怎么比 8845 来的好。反观桌面端全大核倒还好。
还有我不理解浮点运算的提升?有没有必要等 Zen5 的迷你主机? - V2EX
散热
14 寸底部风扇
https://bbs.zhiyoo.com/zhiyoo/93931.html
显示器临时调试 —— UVC 视频采集卡 ¥200
因为延迟和价钱,还是推荐买个显示器,而不是采集卡;
Windows / Mint 双系统
Windows 休眠无法「读写」挂载
/mnt > sudo mount /dev/nvme0n1p3 /mnt/win
Windows is hibernated, refused to mount.
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
Could not mount read-write, trying read-only
管理员模式执行:
powercfg /h off #禁用休眠
双系统 GRUB 没有启动项
sudo update-grub
~ > sudo cat /boot/grub/grub.cfg
[sudo] bgzo 的密码:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${initrdfail}" = 2 ]; then
set initrdfail=
elif [ "${initrdfail}" = 1 ]; then
set next_entry="${prev_entry}"
set prev_entry=
save_env prev_entry
if [ "${next_entry}" ]; then
set initrdfail=2
fi
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function initrdfail {
if [ -n "${have_grubenv}" ]; then if [ -n "${partuuid}" ]; then
if [ -z "${initrdfail}" ]; then
set initrdfail=1
if [ -n "${boot_once}" ]; then
set prev_entry="${default}"
save_env prev_entry
fi
fi
save_env initrdfail
fi; fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 88a4c0f9-c3d0-4858-ab09-242d0b8efc5f
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=zh_CN
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=hidden
set timeout=0
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 0 ; then
set timeout=0
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if [ ${grub_platform} != pc ]; then
set linux_gfx_mode=keep
elif hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Linux Mint 22 Cinnamon' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-88a4c0f9-c3d0-4858-ab09-242d0b8efc5f' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 88a4c0f9-c3d0-4858-ab09-242d0b8efc5f
linux /boot/vmlinuz-6.8.0-38-generic root=UUID=88a4c0f9-c3d0-4858-ab09-242d0b8efc5f ro quiet splash
initrd /boot/initrd.img-6.8.0-38-generic
}
submenu 'Advanced options for Linux Mint 22 Cinnamon' $menuentry_id_option 'gnulinux-advanced-88a4c0f9-c3d0-4858-ab09-242d0b8efc5f' {
menuentry 'Linux Mint 22 Cinnamon, with Linux 6.8.0-38-generic' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.8.0-38-generic-advanced-88a4c0f9-c3d0-4858-ab09-242d0b8efc5f' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 88a4c0f9-c3d0-4858-ab09-242d0b8efc5f
echo 'Loading Linux 6.8.0-38-generic ...'
linux /boot/vmlinuz-6.8.0-38-generic root=UUID=88a4c0f9-c3d0-4858-ab09-242d0b8efc5f ro quiet splash
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-6.8.0-38-generic
}
menuentry 'Linux Mint 22 Cinnamon, with Linux 6.8.0-38-generic (recovery mode)' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.8.0-38-generic-recovery-88a4c0f9-c3d0-4858-ab09-242d0b8efc5f' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 88a4c0f9-c3d0-4858-ab09-242d0b8efc5f
echo 'Loading Linux 6.8.0-38-generic ...'
linux /boot/vmlinuz-6.8.0-38-generic root=UUID=88a4c0f9-c3d0-4858-ab09-242d0b8efc5f ro recovery nomodeset dis_ucode_ldr
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-6.8.0-38-generic
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/10_linux_zfs ###
### END /etc/grub.d/10_linux_zfs ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/25_bli ###
if [ "$grub_platform" = "efi" ]; then
insmod bli
fi
### END /etc/grub.d/25_bli ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows --class os $menuentry_id_option 'osprober-efi-D04F-522C' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root D04F-522C
chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
fwsetup --is-supported
if [ "$?" = 0 ]; then
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
fi
fi
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###
~ >
Mint 静态挂载
获取 UUID
~ > lsblk -f
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
sda
├─sda1
└─sda2 exfat 1.0 New Volume 4435-0C94 1T 71% /mnt/hdd4t
nvme1n1
├─nvme1n1p1 vfat FAT32 866E-5B2E 504.8M 1% /boot/efi
└─nvme1n1p2 ext4 1.0 88a4c0f9-c3d0-4858-ab09-242d0b8efc5f 1.6T 7% /
nvme0n1
├─nvme0n1p1 vfat FAT32 D04F-522C
├─nvme0n1p2
├─nvme0n1p3 ntfs 28EA51E9EA51B432 343.6G 82% /mnt/win
└─nvme0n1p4 ntfs 302EC5712EC53120
写入配置
sudo vim /etc/fstab
UUID=4435-0C94 /mnt/hdd4t exfat defaults,noatime 0 2
UUID=28EA51E9EA51B432 /mnt/win ntfs defaults,noatime 0 2