diff options
author | Silvino Silva <silvino@bk.ru> | 2017-02-20 09:06:21 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2017-02-20 09:06:21 +0000 |
commit | 0e7880313b3a3e016c0d2e287802cc6ddff9edd1 (patch) | |
tree | 4ab03821ada4e4817dd58d161ae46041e24575b0 /core/configure.html | |
parent | fd15c7a1ea378eaea467a741253483b2f5b31ea9 (diff) | |
download | doc-0e7880313b3a3e016c0d2e287802cc6ddff9edd1.tar.gz |
core revision
Diffstat (limited to 'core/configure.html')
-rw-r--r-- | core/configure.html | 45 |
1 files changed, 29 insertions, 16 deletions
diff --git a/core/configure.html b/core/configure.html index ffcb0f7..1ca655f 100644 --- a/core/configure.html +++ b/core/configure.html @@ -215,7 +215,7 @@ <a href="install.html#step2">target partition</a>, blkid list all while vol_id --uuid /dev/sdb1 returns only uuid. Add all block ids to the end of file - /etc/fstab + /etc/fstab; </p> <pre> @@ -223,27 +223,40 @@ </pre> <p>Read <a href="http://linux-audit.com/securing-mount-points-on-linux/" title="Securing mount points">Securing mount points</a>, - and edit /etc/fstab according to your disk layout.</p> + and edit /etc/fstab according to your disk layout. Blocks with uuid will later be created at lvm</p> <pre> # # /etc/fstab: static file system information # # <file system> <dir> <type> <options> <dump> <pass> - /dev/sda4 on / type ext4 (rw,relatime,data=ordered) - /dev/sda3 on /boot type ext4 (rw,relatime,data=ordered) - /dev/sda2 on /boot/efi type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro) - /dev/sda5 on /var type ext4 (rw,relatime,data=ordered) - /dev/sda6 on /usr type ext4 (rw,relatime,data=ordered) - /dev/sda8 on /home type ext4 (rw,relatime,data=ordered) - - devtmpfs on /dev type devtmpfs (rw,nosuid,noatime,size=8192k,nr_inodes=16384,mode=755) - devpts on /dev/pts type devpts (rw,relatime,mode=600) - shm on /dev/shm type tmpfs (rw,relatime) - proc on /proc type proc (rw,relatime) - sysfs on /sys type sysfs (rw,relatime) - - pkgmk /usr/ports/work tmpfs size=30G,gid=102,uid=101,defaults 0 0 + + #/dev/#EXT4FS_ROOT# / ext4 defaults 0 1 + #/dev/#BTRFS_ROOT# / btrfs defaults 0 0 + #/dev/#XFS_ROOT# / xfs defaults 0 0 + #/dev/#SWAP# swap swap defaults 0 0 + #/dev/#EXT4FS_HOME# /home ext4 defaults 0 2 + #/dev/#BTRFS_HOME# /home btrfs defaults 0 0 + #/dev/#XFS_HOME# /home xfs defaults 0 0 + #/dev/cdrom /cdrom iso9660 ro,user,noauto,unhide 0 0 + #/dev/dvd /dvd udf ro,user,noauto,unhide 0 0 + #/dev/floppy/0 /floppy vfat user,noauto,unhide 0 0 + #tmp /tmp tmpfs defaults 0 0 + #shm /dev/shm tmpfs defaults 0 0 + #usb /proc/bus/usb usbfs defaults 0 0 + + /dev/sda3 / ext4 defaults,noatime,ro 0 1 + devpts /dev/pts devpts noexec,nosuid,gid=tty,mode=0620 0 0 + /dev/sda2 /boot ext4 defaults,ro,noatime 0 0 + /dev/sda1 /boot/efi vfat ro,noauto,umask=0077 0 0 + /dev/sda4 /var ext4 defaults,nodev,noexec,nosuid,errors=remount-ro 0 0 + /dev/sda5 /usr ext4 defaults,ro,nodev,errors=remount-ro 0 0 + + UUID=66c083d6-b8f2-4a98-ae55-9412f98cc089 /usr/ports ext4 defaults,ro,nodev,errors=remount-ro 0 0 + pkgmk /usr/ports/work tmpfs size=30G,gid=101,uid=100,defaults 0 0 + UUID=36e9e1d5-8356-451e-a301-81098b9a15ea /srv ext4 defaults,nodev,errors=remount-ro 0 0 + UUID=cd15196a-69f1-4fb4-9730-a384c62add91 /home ext4 defaults,nodev,nosuid,errors=remount-ro 0 0 + # End of file </pre> |