我知道其他操作系统上有以下透明驱动器压缩:
如何在 Debian、Ubuntu 和 Linux Mint 上获得透明驱动器压缩?
可能,它们是基于以下之一的解决方案:
可以使用 xdotool 获取当前选项卡:
# set focus to address on browser
xdotool search --onlyvisible --classname Navigator windowactivate --sync key F6
# copy address from browser tab to clipboard
xdotool search --onlyvisible --classname Navigator windowactivate --sync key Ctrl+c
# get off the focus from address from browser tab
xdotool search --onlyvisible --classname Navigator windowactivate --sync key F6
# delivery of clipboard content to variable
clipboard=`xclip -o -selection clipboard`
# clear clipboard
xsel -bc; xsel -c
# echo URL of active tab of …
Run Code Online (Sandbox Code Playgroud) 2023年10月31日,Bcachefs合并到Linux 6.7内核中:
评论:
众所周知,可以通过以下方式轻松地将 LM21 使用的内核 5.x 更新到“内核 6.1.0-1004-0em”,但该内核不支持 bcachefs。
请参阅以下示例:
uname -r
# Kernel 5.x...
Run Code Online (Sandbox Code Playgroud)
安装新的内核版本:
sudo apt-get install linux-oem-22.04c
Run Code Online (Sandbox Code Playgroud)
重启
检查新的内核版本:
uname -r
Kernel 6.1.0-1004-0em
Run Code Online (Sandbox Code Playgroud)
众所周知,使用以下基于 GUI 的 Ubuntu Mainline Kernel Installer 软件,应该可以替换 LM 21 支持的过时内核。但是,该 GUI 软件似乎不允许选择两个支持 bcachefs 的任何一个上面提到的内核:
一些链接:
已知存在诸如ZFS、Btrfs、bcachefs之类的自我修复文件系统和诸如ECC RAM之类的自我修复RAM或相应的软件实现,其可以纠正单个或多个错误位。
自愈文件格式或项目到标准程序的自愈文件格式有哪些?
文件格式是什么意思?佩:
2023年10月31日,Bcachefs合并到Linux 6.7内核中:
手册:
https://manpages.ubuntu.com/manpages/impish/man8/bcachefs.8.html
https://web.archive.org/web/20230205131951/https://manpages.ubuntu.com/manpages/impish
https://manpages.ubuntu.com/manpages/impish/man8/bcachefs.8.html
https://web.archive.org/web/20230205131951/https://manpages.ubuntu.com/manpages/impish
bcachefs管理软件bcachefs-tools可通过Linux Mint 21和实际Debian版本的应用程序管理获得,并包含以下相关信息:
bcachefs migrate [options] device 将现有文件系统迁移到 bcachefs
-f fs Root of filesystem to migrate
--encrypted
Enable whole filesystem encryption (chacha20/poly1305)
--no_passphrase
Don't encrypt master encryption key
-F Force, even if metadata file already exists
Run Code Online (Sandbox Code Playgroud)
bcachefs migrate-superblock [options] device 迁移后创建默认超级块
-d device
Device to create superblock for
-o offset
Offset of existing superblock
Run Code Online (Sandbox Code Playgroud)
来源:
评论:
我现在正在寻找答案,它使用 bcachefs-tools、gparted 或类似工具。现有的答案是将数据从旧的 ext4 分区复制到新的 bcachefs 分区,这不是我想要的。