安装期间 SLES 12 角色中的“数据和 ISV 应用程序”和“操作系统”意味着什么?

安装期间 SLES 12 角色中的“数据和 ISV 应用程序”和“操作系统”意味着什么?

我们正在通过 GUI 安装程序安装 SLES12,并想知道在创建逻辑卷时,角色背后是什么:

  • 操作系统
  • 数据和 ISV 应用程序

我们可以看到,也许“/”应该使用第一个,“/home”应该使用第二个,但是两者到底有什么区别呢?不同的安装选项或 FS 设置还是什么?

答案1

它更改了后续菜单的默认值。

https://github.com/yast/yast-storage-ng/blob/master/doc/user-stories/expert-partitioner.md

如果分区角色是“操作系统”

sets the following 'Formatting options' by default
    Format partition: true
        File System: Btrfs
        Enable snapshots: true
    Do not format partition: false
        File System Id: 0x83 Linux
    Encrypt: false
sets the following options for 'Mounting options'
    Mount partition: true
        Mount point: first free of /, /home, /var
    Do not mount partition: false

如果分区角色是“数据和 ISV 应用程序”

sets the following 'Formatting options' by default
    Format partition: true
        File System: XFS
    Do not format partition: false
        File System Id: 0x83 Linux
    Encrypt: false
sets the following options for 'Mounting options'
    Mount partition: true
        Mount point: first free of /, /home, /var
    Do not mount partition: false

相关内容