Common Post-Install: Difference between revisions

From WilliamsNet Wiki
Jump to navigation Jump to search
(Created page with "=== Configure shared filesystem access === There are three shared filesystems available depending on the needs of the system: * <code>/files</code> - the main administrative...")
Tag: visualeditor-switched
(No difference)

Revision as of 12:51, 25 November 2021

Configure shared filesystem access

There are three shared filesystems available depending on the needs of the system:

  • /files - the main administrative and media file share
  • /backup - backup location for all systems & data
  • /work - technical working space

To access these fulesystems, add the appropriate lines to the bottom of /etc/fstab

storage1:/files	/files nfs4 soft 0 0
storage1:/backup/systems/<hostname>/current	/backup	nfs4	soft 0 0
pro6:/work    /work nfs4 soft 0 0

make the mount points:

mkdir /files
mkdir /backup
mkdir /work

mount the filesystems:

mount /files
mount /backup
mount /work