AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题

问题[zfs](ubuntu)

Martin Hope
rwfitzy
Asked: 2024-03-30 22:56:16 +0800 CST

zpool 的正确 ashift 值

  • 6

我是 zfs 和设置 KVM 服务器的新手。我了解到为 zpool 设置正确的 ashift 非常重要。我创建了一个包含 4 个 1.92TB Kingston DC600M 驱动器的 zpool,没有设置 ashift。创建后,我不确定这个值设置为多少。这是扇区大小为 512 的驱动器布局:

root@kvm1:~# fdisk -l /dev/sda
Disk /dev/sda: 1.75 TiB, 1920383410176 bytes, 3750748848 sectors
Disk model: KINGSTON SEDC600
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 54FF5EA0-CE6E-3145-89A3-234A10DC8AA4

Device          Start        End    Sectors  Size Type
/dev/sda1        2048 3750731775 3750729728  1.7T Solaris /usr & Apple ZFS
/dev/sda9  3750731776 3750748159      16384    8M Solaris reserved 1

这是创建的 zpool:

root@kvm1:~# zpool status
  pool: vm_images
 state: ONLINE
config:

        NAME                        STATE     READ WRITE CKSUM
        vm_images                   ONLINE       0     0     0
          mirror-0                  ONLINE       0     0     0
            wwn-0x50026b7686b6cde8  ONLINE       0     0     0
            wwn-0x50026b7686b6cbfb  ONLINE       0     0     0
          mirror-1                  ONLINE       0     0     0
            wwn-0x50026b7686b6ce16  ONLINE       0     0     0
            wwn-0x50026b7686b6ce02  ONLINE       0     0     0

现在,如果我使用 zdb,它似乎会为每个镜像显示正确的 ahsift 9:

root@kvm1:~# zdb -C
vm_images:
    version: 5000
    name: 'vm_images'
    state: 0
    txg: 32042
    pool_guid: 18113470955376656359
    errata: 0
    hostid: 940822259
    hostname: 'kvm1'
    com.delphix:has_per_vdev_zaps
    vdev_children: 2
    vdev_tree:
        type: 'root'
        id: 0
        guid: 18113470955376656359
        create_txg: 4
        children[0]:
            type: 'mirror'
            id: 0
            guid: 17129579534474406438
            metaslab_array: 267
            metaslab_shift: 34
            ashift: 9
            asize: 1920368902144
            is_log: 0
            create_txg: 4
            com.delphix:vdev_zap_top: 129
            children[0]:
                type: 'disk'
                id: 0
                guid: 12141588404671866473
                path: '/dev/disk/by-id/wwn-0x50026b7686b6cde8-part1'
                devid: 'scsi-350026b7686b6cde8-part1'
                phys_path: 'pci-0000:1b:00.0-scsi-0:0:13:0'
                whole_disk: 1
                create_txg: 4
                com.delphix:vdev_zap_leaf: 130
            children[1]:
                type: 'disk'
                id: 1
                guid: 4374722492424561155
                path: '/dev/disk/by-id/wwn-0x50026b7686b6cbfb-part1'
                devid: 'scsi-350026b7686b6cbfb-part1'
                phys_path: 'pci-0000:1b:00.0-scsi-0:0:14:0'
                whole_disk: 1
                create_txg: 4
                com.delphix:vdev_zap_leaf: 131
        children[1]:
            type: 'mirror'
            id: 1
            guid: 4063060495541825533
            metaslab_array: 256
            metaslab_shift: 34
            ashift: 9
            asize: 1920368902144
            is_log: 0
            create_txg: 4
            com.delphix:vdev_zap_top: 132
            children[0]:
                type: 'disk'
                id: 0
                guid: 2117188888921191837
                path: '/dev/disk/by-id/wwn-0x50026b7686b6ce16-part1'
                devid: 'scsi-350026b7686b6ce16-part1'
                phys_path: 'pci-0000:1b:00.0-scsi-0:0:17:0'
                whole_disk: 1
                create_txg: 4
                com.delphix:vdev_zap_leaf: 133
            children[1]:
                type: 'disk'
                id: 1
                guid: 14967214633990567153
                path: '/dev/disk/by-id/wwn-0x50026b7686b6ce02-part1'
                devid: 'scsi-350026b7686b6ce02-part1'
                phys_path: 'pci-0000:1b:00.0-scsi-0:0:18:0'
                whole_disk: 1
                create_txg: 4
                com.delphix:vdev_zap_leaf: 134
    features_for_read:
        com.delphix:hole_birth
        com.delphix:embedded_data

但是,zpool ashift 显示为零?

root@kvm1:~# zpool get ashift vm_images
NAME       PROPERTY  VALUE   SOURCE
vm_images  ashift    0       default

我现在处于测试模式,正在寻求有关如何将 ashift 设置为 9 来擦除和设置 zpool 的建议?

zfs
  • 1 个回答
  • 108 Views
Martin Hope
Conor Igoe
Asked: 2023-03-04 03:15:13 +0800 CST

lsof +D /tmp 输出的 NAME 列中的大多数条目都不以 /tmp 开头。为什么会这样?

  • 8

我所在的实验室拥有共享的科学计算环境。我的系统管理员刚刚告诉实验室的每个人,我正在使用的节点之一即将崩溃,因为/tmp它已满。我一直在试图了解我是如何使用/tmp和困惑的。我注意到运行lsof +D /tmp显示了很多打开的文件,根据输出的 NAME 列中的条目,这些文件似乎不在或其/tmp任何子目录中(并且未在 的输出中列出ls /tmp)但仍被包括在内在命令输出中。例如,这是输出的一部分:

(base) lsof -u cigoe +d /tmp 2>/dev/null 
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME 
bash 81648 cigoe cwd DIR 253,2 4096 34238020 /home/scratch/cigoe/2022/proposal 
bash 81648 cigoe rtd DIR 253,0 4096 128 / bash 81648 cigoe txt REG 253,0 1150648 3646 /usr/bin/bash 
bash 81648 cigoe mem REG 253,0 2586930 3602 /usr/lib/locale/en_US.utf8/LC_COLLATE 
bash 81648 cigoe mem REG 253,0 9253600 201909537 /var/lib/sss/mc/passwd 
bash 81648 cigoe mem REG 253,0 46320 67889113 /usr/lib64/libnss_sss.so.2 
...

我无法很好地理解这些打开的文件是如何与 相关联的/tmp,但它们似乎共同占用了大量空间(就 SIZE/OFF 列中的条目总和而言,太多了实际适合设备,所以我不确定那里发生了什么)。如果相关,我们的实验室使用 ZFS。我将不胜感激回答以下问题:

from 的输出的 NAME 列中的大多数条目lsof +D /tmp都不以 开头/tmp。为什么会这样?

zfs
  • 1 个回答
  • 97 Views
Martin Hope
Alfred.37
Asked: 2022-12-03 05:31:08 +0800 CST

哪个文件用于 ZFS 的配置?

  • 7

在 Ubuntu 中,可以通过控制台配置如下设置:

  • 启用和禁用压缩、压缩算法和压缩强度的选择。
  • 启用和禁用重复数据删除。

这些设置存储在哪个配置文件中,是否允许使用编辑器对其进行编辑?

zfs
  • 1 个回答
  • 130 Views
Martin Hope
Daniel Krajnik
Asked: 2022-01-30 12:59:01 +0800 CST

如何配置 autozsys,使其不会破坏早于 X 时间的 zfs 快照?

  • 0

我认为 autozsys 会销毁超过一个月的快照,我想知道是否可以扩展它(例如,让它持续 3 个月的快照)。

我找不到 autozsys 的任何配置文件,只有 /etc/apt/apt.conf.d/90_zsys_system_autosnapshot 中的一个 cron 作业,但我希望有更复杂的方法来控制它。

zfs
  • 2 个回答
  • 238 Views
Martin Hope
Flimm
Asked: 2021-10-17 02:12:09 +0800 CST

带有 ZFS 的 Ubuntu 21.10 上的奇怪文件问题

  • 6

在使用 ZFS 选项安装或升级到 Ubuntu 21.10 后,我开始遇到奇怪的问题。

例如,在命令行上,我开始看到如下错误:

Cannot access 'foobar': No such file or directory

在某个目录中运行 ls -l 时,我得到问号,如下所示:

-????????? ? ? ? ? ? foobar.txt
-????????? ? ? ? ? ? foobar2.txt

最终,我什至无法启动 Ubuntu 21.10(使用 ZFS)。

zfs
  • 2 个回答
  • 2398 Views
Martin Hope
Thomas Browne
Asked: 2021-02-25 13:21:09 +0800 CST

Ubuntu ZFS 根分区快照对于系统回滚是否安全?

  • 1

以为 ZFS 支持我,昨天我开始使用 Gnome、Compiz 和 dconf 编辑器。几个小时后,Gnome 在各种插件上看起来确实不错,但在重新启动后,我的(复杂的,3 显示器)设置变得疯狂,Wayland 非常不高兴。所以我想我会在修补开始之前回到我的 Grub 快照历史记录(当时因为 apt 已经制作了一些快照)。

选择较旧的根快照(系统和用户),重新启动,似乎没问题。但是然后.... sudo apt update && sudo apt upgrade .... 整个系统变得混乱。开始搞乱内核和图形驱动程序更新。阿普特非常不高兴。很奇怪。并破坏了整个显示驱动程序设置,以至于我无法恢复系统,今天花了半天时间重新安装了20.04。这次是 ext 4(尽管到目前为止我对 ZFS 很满意)。

所以我想知道。ZFS 快照真的推荐用于“回滚”根分区上的操作系统吗?或者它真的只适用于数据驱动器或主目录。apt 是否会以某种方式感到困惑,即这种回滚会创建不可恢复的不一致状态吗?

zfs
  • 1 个回答
  • 658 Views
Martin Hope
kaulex
Asked: 2020-12-22 05:52:20 +0800 CST

使用镜像扩展现有 Single Disk ZFS,无需格式化现有 HDD

  • 4

我的服务器上有一个格式化为单盘 zfs 系统的 HDD。它如下所示: 在此处输入图像描述

现在我想在不格式化原始磁盘的情况下将其转换为 zfs 镜像。有任何想法吗?

结果应该是这样的:

hdd0
   mirror0
       ata-........................
       ata-........................

  
server zfs
  • 1 个回答
  • 3062 Views
Martin Hope
fernandezr
Asked: 2020-12-08 05:29:29 +0800 CST

启动时 Ubuntu 20.04 中的 RAM 使用率非常高

  • 1

当我启动计算机时,该htop命令显示 RAM 使用率非常高,即使没有启动 Web 浏览器,这是一种非常常见的资源消耗者。这是正常的吗?我能做些什么来减少这种巨大的 RAM 消耗吗?

Htop 作为普通用户

如果您需要更多信息或日志,我很感激提供。

Htop 以 root 用户身份,重新启动计算机后。 Htop 作为 root 用户

系统是在 Ubuntu 中使用 ZFS 安装的

ram zfs htop
  • 1 个回答
  • 633 Views
Martin Hope
digrouz
Asked: 2020-11-25 08:24:06 +0800 CST

grub-install 在 ubuntu 20.04.1 上失败

  • 5

今天我确实更新了最初安装在 ZFS 上的 Ubuntu 20.04 Root之后的系统。更新时,我看到 grub 有一个更新,它无法运行包含的 grub-install。

所以我决定从指南中重播 grub 安装:

grub-install --target=x86_64-efi --efi-directory=/boot/efi \
    --bootloader-id=ubuntu --recheck --no-floppy

cp -a /boot/efi/EFI /boot/efi2
grub-install --target=x86_64-efi --efi-directory=/boot/efi2 \
    --bootloader-id=ubuntu-2 --recheck --no-floppy

(我在镜子上)

这也失败了。我仍然可以成功重启我的系统,但我猜它仍然运行旧的 grub 二进制文件。

我是唯一一个面临这个问题的人吗?它的发病率是多少?

这里还有一些信息:

 dpkg -l | grep grub
ii  grub-common                          2.04-1ubuntu26.7                      amd64        GRand Unified Bootloader (common files)
ii  grub-efi-amd64                       2.04-1ubuntu26.7                      amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 version)
ii  grub-efi-amd64-bin                   2.04-1ubuntu26.7                      amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 modules)
ii  grub-efi-amd64-signed                1.142.9+2.04-1ubuntu26.7              amd64        GRand Unified Bootloader, version 2 (EFI-AMD64 version, signed)
ii  grub2-common                         2.04-1ubuntu26.7                      amd64        GRand Unified Bootloader (common files for version 2)

跑步 :

grub-install --target=x86_64-efi --efi-directory=/boot/efi \ --bootloader-id=ubuntu --recheck --no-floppy -vv
...
grub-install: info: writing 656 bytes of a fixup block starting at 0xe000.
grub-install: info: adding a relocation entry for 0xf010.
grub-install: info: adding a relocation entry for 0xf018.
grub-install: info: adding a relocation entry for 0xf028.
grub-install: info: adding a relocation entry for 0xf030.
grub-install: info: adding a relocation entry for 0xf040.
grub-install: info: adding a relocation entry for 0xf048.
grub-install: info: adding 393 padding fixup entries.
grub-install: info: writing 808 bytes of a fixup block starting at 0xf000.
grub-install: info: reading /usr/lib/grub/x86_64-efi/crypto.mod.
grub-install: info: reading /usr/lib/grub/x86_64-efi/gcry_crc.mod.
grub-install: info: reading /usr/lib/grub/x86_64-efi/gzio.mod.
grub-install: info: reading /usr/lib/grub/x86_64-efi/zfs.mod.
grub-install: info: reading /usr/lib/grub/x86_64-efi/part_gpt.mod.
grub-install: info: reading /usr/lib/grub/x86_64-efi/search_fs_uuid.mod.
grub-install: info: reading /boot/grub/x86_64-efi/load.cfg.
grub-install: info: kernel_img=0x556fae524f00, kernel_size=0x1a000.
grub-install: info: the core size is 0x31b40.
grub-install: info: writing 0x34000 bytes.
grub-install: info: copying `/usr/lib/grub/x86_64-efi-signed/grubx64.efi.signed' -> `/boot/efi2/EFI/ubuntu-2/grubx64.efi'.
grub-install: info: copying `/usr/lib/shim/shimx64.efi.signed' -> `/boot/efi2/EFI/ubuntu-2/shimx64.efi'.
grub-install: info: copying `/usr/lib/shim/mmx64.efi' -> `/boot/efi2/EFI/ubuntu-2/mmx64.efi'.
grub-install: info: copying `/usr/lib/shim/BOOTX64.CSV' -> `/boot/efi2/EFI/ubuntu-2/BOOTX64.CSV'.
grub-install: info: copying `/boot/grub/x86_64-efi/load.cfg' -> `/boot/efi2/EFI/ubuntu-2/grub.cfg'.
grub-install: info: copying `/usr/lib/shim/shimx64.efi.signed' -> `/boot/efi2/EFI/BOOT/BOOTX64.EFI'.
grub-install: info: copying `/usr/lib/shim/fbx64.efi' -> `/boot/efi2/EFI/BOOT/fbx64.efi'.
grub-install: info: copying `/usr/lib/shim/mmx64.efi' -> `/boot/efi2/EFI/BOOT/mmx64.efi'.
grub-install: info: Registering with EFI: distributor = `ubuntu-2', path = `\EFI\ubuntu-2\shimx64.efi', ESP at hostdisk//dev/sdl,gpt1.
grub-install: warning: Internal error.
grub-install: error: failed to register the EFI boot entry: Operation not permitted.

我该如何解决 ?

grub2 zfs grub-efi 20.04
  • 1 个回答
  • 3630 Views
Martin Hope
Kevin
Asked: 2020-11-20 08:50:41 +0800 CST

启动 zpool 空间不足,无法再运行更新

  • 2

我最近擦拭了我的盒子并安装了我喜欢并且很棒的 20.10!这一次我决定我想生活在边缘并使用实验性的 zfs 支持,但是在安装包和更新一段时间后,我现在有一个奇怪的问题,我的引导 zpool 太满了。

每当我在软件更新程序中点击“立即更新”时,我都会收到如下消息:

The upgrade needs a total of 254 M free space on disk '/boot'. Please free at least an additional 194 M of disk space on '/boot'. You can remove old kernels using 'sudo apt autoremove', and you could also set COMPRESS=xz in /etc/initramfs-tools/initramfs.conf to reduce the size of your initramfs.

我运行sudo apt autoremove了它并没有删除任何内容,我犹豫要更改我的 initramfs 上的压缩,因为这更像是对可能的较低问题的补丁(也许我错了哈哈)。

我仍然可以手动升级,sudo apt update && sudo apt upgrade但每次都会收到此错误:

ERROR couldn't save system state: Minimum free space to take a snapshot and preserve ZFS performance is 20%.

当我跑步时,zpool list我得到:

NAME    SIZE  ALLOC   FREE  CKPOINT  EXPANDSZ   FRAG    CAP  DEDUP    HEALTH  ALTROOT
bpool  1.88G  1.69G   185M        -         -    47%    90%  1.00x    ONLINE  -
rpool   460G   165G   295G        -         -    10%    35%  1.00x    ONLINE  -

所以我的引导池容量为 90%...

我还尝试zsysctl service gc -a删除快照,但这似乎并没有改变 bpool 的使用...

所以也许我需要改变我的 bpool 分配大小?我怎么做?

当我升级/安装时,我也遇到了一些奇怪的 initramfs 故障,但我不确定这是否相关?

Setting up initramfs-tools (0.137ubuntu12) ...
update-initramfs: deferring update (trigger activated)
Setting up linux-firmware (1.190.1+system76~1605123765~20.10~3894207) ...
update-initramfs: Generating /boot/initrd.img-5.8.0-29-generic
I: The initramfs will attempt to resume from /dev/nvme0n1p2
I: (UUID=05a735a7-9e82-494e-be9b-171b1c132af5)
I: Set the RESUME variable to override this.
Error 24 : Write error : cannot write compressed block 
E: mkinitramfs failure cpio 141 lz4 -9 -l 24
update-initramfs: failed for /boot/initrd.img-5.8.0-29-generic with 1.
dpkg: error processing package linux-firmware (--configure):
 installed linux-firmware package post-installation script subprocess returned error exit status 1
Processing triggers for initramfs-tools (0.137ubuntu12) ...
update-initramfs: Generating /boot/initrd.img-5.8.0-29-generic
I: The initramfs will attempt to resume from /dev/nvme0n1p2
I: (UUID=05a735a7-9e82-494e-be9b-171b1c132af5)
I: Set the RESUME variable to override this.
Error 24 : Write error : cannot write compressed block 
E: mkinitramfs failure cpio 141 lz4 -9 -l 24
update-initramfs: failed for /boot/initrd.img-5.8.0-29-generic with 1.
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 linux-firmware
 initramfs-tools
ZSys is adding automatic system snapshot to GRUB menu
E: Sub-process /usr/bin/dpkg returned an error code (1)

runningzfs list -t snapshot显示了 bpool 的一堆快照:

NAME                                                                                                   USED  AVAIL     REFER  MOUNTPOINT
bpool/BOOT/ubuntu_fjp6bn@autozsys_z4aetj                                                                72K      -      237M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_mtxh3h                                                                72K      -      237M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_72y92u                                                               105M      -      357M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_lo8d22                                                              85.2M      -      337M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_y7ihca                                                               104M      -      336M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_qs6vz5                                                              85.2M      -      318M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_cyg6vx                                                                72K      -      337M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_r6e64v                                                                56K      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_nrhjqi                                                                56K      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_kgfl6b                                                               104M      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_nw3nk0                                                              85.1M      -      199M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_m1b6l9                                                               104M      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_hnt98o                                                              85.1M      -      199M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_rj8ttq                                                                64K      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_da1f4s                                                                 0B      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_ljdo3n                                                                 0B      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_danwfz                                                                 0B      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_4sjbka                                                               104M      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_gl3ru4                                                                 0B      -      218M  -
bpool/BOOT/ubuntu_fjp6bn@autozsys_tdbgin                                                                 0B      -      218M  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_z4aetj                                                              71.7M      -     5.10G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_mtxh3h                                                               217M      -     5.25G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_72y92u                                                              33.3M      -     5.43G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_lo8d22                                                              30.2M      -     5.30G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_y7ihca                                                               224M      -     5.42G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_qs6vz5                                                              27.8M      -     5.23G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_cyg6vx                                                              56.3M      -     5.51G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_r6e64v                                                              56.6M      -     5.29G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_nrhjqi                                                              30.6M      -     5.29G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_kgfl6b                                                              7.01M      -     5.25G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_nw3nk0                                                              29.6M      -     5.17G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_m1b6l9                                                               222M      -     5.32G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_hnt98o                                                              27.7M      -     5.13G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_rj8ttq                                                              26.2M      -     5.17G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_da1f4s                                                               155M      -     5.29G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_ljdo3n                                                              24.9M      -     5.61G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_danwfz                                                               181M      -     5.74G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_4sjbka                                                               498M      -     5.66G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_gl3ru4                                                                 0B      -     5.92G  -
rpool/ROOT/ubuntu_fjp6bn@autozsys_tdbgin                                                                 0B      -     5.92G  -

但是我对 zfs 或 zsys 不够坚定,不知道我是否可以只销毁快照?

apt initramfs zfs 20.10
  • 3 个回答
  • 2137 Views

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Martin Hope
    Flimm 如何在没有 sudo 的情况下使用 docker? 2014-06-07 00:17:43 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve