This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
linux:arch_home_directories [2015/02/09 19:30] walter [Packages] |
linux:arch_home_directories [2021/05/02 21:36] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Home Directories on Arch Linux ====== | ||
+ | |||
====== Client Config ====== | ====== Client Config ====== | ||
Line 20: | Line 22: | ||
</file> | </file> | ||
<file|/etc/fstab> | <file|/etc/fstab> | ||
- | 172.29.0.6:/nfs-dir /mount-point nfs4 rw,hard,intr 0 0 | + | 172.29.0.6:/nfs-dir /mount-point nfs4 rw,hard,defaults 0 0 |
</file> | </file> | ||
- | <file|/etc/ntp.conf> | + | <file|/etc/systemd/timesyncd.conf> |
- | # The NFS Server | + | [Time] |
- | server 172.29.0.6 iburst | + | NTP=172.29.0.6 172.29.0.7 |
- | + | FallbackNTP=0.us.pool.ntp.org 1.us.pool.ntp.org 2.us.pool.ntp.org | |
- | # Only allow read-only access from localhost | + | |
- | restrict default ignore | + | |
- | restrict 127.0.0.1 | + | |
- | restrict 172.29.0.6 mask 255.255.255.255 | + | |
</file> | </file> | ||
Line 38: | Line 36: | ||
* rpcbind | * rpcbind | ||
* nfs-common | * nfs-common | ||
- | * nptd | + | * systemd-timesyncd (timedatectl set-ntp true) |
Start rpcbind then nfs-common, then you will be able to mount the nfs directories, add these entries to rc.conf in the daemons array after the network/net-profiles entries. | Start rpcbind then nfs-common, then you will be able to mount the nfs directories, add these entries to rc.conf in the daemons array after the network/net-profiles entries. | ||
Line 51: | Line 49: | ||
Install Required Packages | Install Required Packages | ||
<code> | <code> | ||
- | pacman -S rpcbind nfs-utils nfsidmap | + | pacman -S rpcbind nfs-utils nfsidmap openntpd |
</code> | </code> | ||
Line 58: | Line 56: | ||
Change the lines in these files to the values defined. | Change the lines in these files to the values defined. | ||
- | <file|/etc/idmapd.conf> | + | |
- | Domain = acm.cs | + | |
- | </file> | + | |
- | <file|/etc/conf.d/nfs-common> | + | |
- | NEED_IDMAPD="yes" | + | |
- | </file> | + | |
The number of nfsd threads in increased from the default to improve preformance. | The number of nfsd threads in increased from the default to improve preformance. | ||
<file|/etc/conf.d/nfs-server> | <file|/etc/conf.d/nfs-server> | ||
Line 70: | Line 63: | ||
</file> | </file> | ||
Configure the NTP server to sync against the US NTP pool and make sure that clients on the LAN have access | Configure the NTP server to sync against the US NTP pool and make sure that clients on the LAN have access | ||
- | <file|/etc/ntp.conf> | + | <file|/etc/ntpd.conf> |
- | server 0.us.pool.ntp.org iburst | + | # sample ntpd configuration file, see ntpd.conf(5) |
- | server 1.us.pool.ntp.org iburst | + | |
- | server 2.us.pool.ntp.org iburst | + | |
- | server 3.us.pool.ntp.org iburst | + | |
- | #This next part will make it sync the time from the internal clock if it can't get out to the internet | + | |
- | #The time may be wrong, but clients on the LAN will still be sync'd with the server preventing shews with NFS served files | + | |
- | server 127.127.1.0 | + | |
- | fudge 127.127.1.0 stratum 10 | + | |
- | + | ||
- | # you should not need to modify the following paths | + | |
- | driftfile /var/lib/ntp/ntp.drift | + | |
- | logfile /var/log/ntp.log | + | |
- | + | ||
- | # If you want to deny all machines (including your own) | + | |
- | # from accessing the NTP server, uncomment: | + | |
- | restrict default nomodify nopeer notrap noquery | + | |
- | # To deny other machines from changing the | + | # Addresses to listen on (ntpd does not listen by default) |
- | # configuration but allow localhost: | + | listen on 0.0.0.0 |
- | #restrict default nomodify nopeer | + | |
- | restrict 127.0.0.1 | + | |
- | restrict 0.us.pool.ntp.org mask 255.255.255.255 nomodify notrap noquery | + | # sync to a single server |
- | restrict 1.us.pool.ntp.org mask 255.255.255.255 nomodify notrap noquery | + | #server ntp.example.org |
- | restrict 2.us.pool.ntp.org mask 255.255.255.255 nomodify notrap noquery | + | |
- | restrict 3.us.pool.ntp.org mask 255.255.255.255 nomodify notrap noquery | + | |
- | # To allow machines within your network to synchronize | + | # use a random selection of NTP Pool Time Servers |
- | # their clocks with your server, but ensure they are | + | # see http://support.ntp.org/bin/view/Servers/NTPPoolServers |
- | # not allowed to configure the server or used as peers | + | servers us.pool.ntp.org |
- | # to synchronize against, uncomment this line. | + | |
- | # | + | |
- | restrict 172.29.0.0 mask 255.255.255.0 nomodify notrap | + | |
</file> | </file> | ||
Line 121: | Line 91: | ||
* nfs-client.target | * nfs-client.target | ||
* nfs-server.service | * nfs-server.service | ||
- | * nptd.service | + | * opennptd.service |
Start rpcbind, then nfs-common, and then nfs-server, then you will be able to mount the nfs directories, add these entries to rc.conf in the daemons array after the network/net-profiles entries. | Start rpcbind, then nfs-common, and then nfs-server, then you will be able to mount the nfs directories, add these entries to rc.conf in the daemons array after the network/net-profiles entries. |