Update Post Install Setup authored by William Frischhertz's avatar William Frischhertz
...@@ -51,6 +51,15 @@ It is recommended to copy and paste the command below ...@@ -51,6 +51,15 @@ It is recommended to copy and paste the command below
controls@x2fec:/$ sudo apt-get install nfs-common nfs-kernel-server subversion ntpdate dkms build-essential cmake pkg-config psmisc linux-headers-$(uname -r) flex bison ldas-tools-al-dev ldas-tools-framecpp-dev libboost-all-dev git controls@x2fec:/$ sudo apt-get install nfs-common nfs-kernel-server subversion ntpdate dkms build-essential cmake pkg-config psmisc linux-headers-$(uname -r) flex bison ldas-tools-al-dev ldas-tools-framecpp-dev libboost-all-dev git
``` ```
# Setup NFS export of /opt/rtcds directory
The FEC exports the /opt/rtcds directory to the directly connected workstation, insert workstation ip into `<workstation-ip>`. Directions for mounting the NFS mount on the workstation will be included in the workstation setup instructions.**If you are configuring your front-end as a cymac (front-end and workstation on the same host), you can skip this step.**
Add the following content to `/etc/exports` and run `/usr/sbin/exportfs -a`. Restart the nfs-server.service.
```plaintext
controls@x2fec:/$ sudo cat /etc/exports
/etc/exports <workstation-ip>(rw,sync,no_subtree_check)
controls@x2fec:/$ sudo /usr/sbin/exportfs -a
controls@x2fec:/$ sudo systemctl status nfs-server.service
```
# Setup NTP # Setup NTP
The front-end needs to be synced to an NTP source. You need to know the address of the local NTP server. At the IFOs, this may be the core router. The front-end needs to be synced to an NTP source. You need to know the address of the local NTP server. At the IFOs, this may be the core router.
... ...
......