安装 Ubuntu Server 14.04 时,我是否需要命名所有分区,或者我是否可以将“名称:”字段留空,而不会现在/以后遇到任何问题/混淆?我对 Ubuntu 操作系统还很陌生,所以我担心通过命名分区,我实际上可能会在以后造成混淆。
如果我设置软件 RAID 1 阵列,答案会改变吗?
答案1
命名分区将使未来的管理更加容易。我确信,它只是为挂载点创建了一个别名。基本上,使用更容易记住的名称而不是仅仅分配数字,就可以为分区挂载点提供可调用的名称。
答案2
问题是设备名称/dev/sda
可以/dev/sdb
改变:向系统添加磁盘后,名称很容易混乱。
标签不会改变,因为磁盘的 UUID(唯一标识符)是这样的。为了避免出现问题,当您安装新的 Ubuntu 系统时,通常会通过其 UUID 而不是设备名称来安装/识别磁盘和分区;看看我的/etc/fstab
:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=0dfa0702-cb80-417c-b06e-5c946216d174 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda5 during installation
UUID=12fa4e6a-6a16-4d4d-84bb-9bbdfae8e0a1 /home ext4 defaults 0 2
# swap was on /dev/sda3 during installation
UUID=3773a8fb-fdbc-4e77-8358-7fa5ed65cc5f none swap sw 0 0
如果你愿意,你可以使用标签,label=
如果你有的话(至少我认为)。另请参阅https://wiki.archlinux.org/index.php/Persistent_block_device_naming