First of all: I'm running the latest Arch Linux (complete with the latest systemd and everything else) and I've encrypted both my / and /home. <br><br>Now, the problem is that I can't get my /home to automount once I've mounted my /. My /etc/crypttab looks like this:<br>
home     /dev/sda3     /etc/homepwd<br><br>I've created /etc/homepwd using<br>echo password > /etc/homepwd<br><br>And yes, I've entered the correct password.<br><br>When I boot I get dropped to a rescue shell because I can't mount /home. Here's my journalctl output:<br>
systemd-cryptsetup[293]: Invalid passphrase.<br>systemd-cryptsetup[293]: Set cipher aes, mode xts-plain, key size 512 bits for device /dev/sda3.<br>systemd-cryptsetup[293]: Invalid passphrase.<br>systemd-cryptsetup[293]: Too many attempts.<br>
<br>I've tried playing with the permissions (even did a chmod 777), but I still can't get systemd-cryptsetup to realize that the file contains the correct password.<br><br>So, what to do?<br>