Parece haver algum suporte para configurar opções de montagem padrão para o ext4 usando o tune2fs.
A sintaxe é algo como tune2fs -E mount_opts=.. device
Mais informações aqui link e em man tune2fs
É possível modificar / redefinir a opção de padrões de montagem do Linux?
Por exemplo, ter um fstab assim:
# / 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
É possível redefinir a opção "defaults"?
Eu sei que geralmente é definido assim:
padrões: rw, suid, dev, exec, auto, nouser e async. veja man mount
Parece haver algum suporte para configurar opções de montagem padrão para o ext4 usando o tune2fs.
A sintaxe é algo como tune2fs -E mount_opts=.. device
Mais informações aqui link e em man tune2fs
Você pode definir opções para montar dispositivos de bloco em / etc / fstab.
por exemplo:
# /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