5

Можно ли изменить / переопределить опцию по умолчанию для монтирования Linux?

Например, имея такой fstab:

# / was on /dev/sda8 during installation
UUID=669cb10d /               ext4    errors=remount-ro 0       1
# /home was on /dev/sda7 during installation
UUID=43e81f24 /home           ext4    defaults        0       2

Можно ли переопределить опцию "по умолчанию"?

Я знаю, что это обычно определяется так:

значения по умолчанию: rw, suid, dev, exec, auto, nouser и async. увидеть человека гора

2 ответа2

5

Кажется, есть некоторая поддержка для установки параметров монтирования по умолчанию для ext4 с помощью tune2fs.

Синтаксис выглядит примерно так: tune2fs -E mount_opts=.. device

Больше информации здесь http://en.wikipedia.org/wiki/Fstab и в man tune2fs

0

Вы можете определить параметры для монтирования блочных устройств в /etc /fstab.

например:

# /etc/fstab: static file system information.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#

#                           

LABEL=geee      /       ext4        relatime    0 1
LABEL=usr       /usr        ext4        relatime    0 2
LABEL=var       /var        ext4        relatime    0 2
LABEL=portage       /usr/portage    reiserfs    noatime     0 0
#LABEL=it2901       /it2901     ext4        relatime    0 2
LABEL=home      /home       ext4        relatime    0 2
LABEL=boot      /boot       ext3        noatime     0 2
/dev/sda1       /mnt/win    ntfs-3g uid=1512,umask=0022     0 0
/dev/sda3       /mnt/media  ntfs-3g uid=1512,umask=0022 0 0
/mnt/media/media    /media      none        bind        0 0
/dev/sda6       none        swap        sw      0 0

#/dev/sda5      /mnt/ubuntu     ext3        noatime     0 0
#/mnt/ubuntu/boot   /boot       none        bind        0 0
/mnt/media/root-extension/usr/share/doc /usr/share/doc none bind    0 0

genja.lan:/R/tmp        /R/tmp      nfs         noauto,nfsvers=3,soft,intr 0 0
#genja.lan:/R/es2       /R/es2      nfs         noauto,soft,intr 0 0
#genja.lan:/R/mirror    /R/mirror   nfs         noauto,soft,intr 0 0
##raptor.lan:/usr/portage /usr/portage  nfs         noauto,soft,intr 0 0
tryggve.lan:/R/tb   /R/tb       nfs         noauto,nfsvers=3,soft,intr 0 0
#tryggve.lan:/R/audio   /R/audio    nfs         noauto,soft,intr 0 0

tmpfs           /tmp        tmpfs size=200M,nodev,nosuid,noexec 0 0
shm         /dev/shm    tmpfs       nodev,nosuid,noexec 0 0

Gentoo Fstab

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .