kemonine
/
lollipopcloud
Archived
1
0
Fork 0

Merge branch 'pine_updates' of kemonine/docs into master

This commit is contained in:
KemoNine 2019-04-16 23:02:53 +00:00 committed by Gitea
commit 4d9d72d438
1 changed files with 23 additions and 0 deletions

View File

@ -20,3 +20,26 @@ Some useful links
- The axp803 appears to charge the battery pack even with 2 cores of the CPU at max, persistent load, adding persistent usb load on a usb disk will "net 0" the charger. You'll want a semi-idle setup for the batteries to charge over time with a sopine.
- The Samsung 3000mah 18650 batteries are a good fit for the battery pack sold by pine64.org and have good capacity and amp ratings.
- The top USB port on the sopine is a *host* port
## ZFS Notes
zfs is broken until 0.7.13, see the below links for info on how to set this up
- https://github.com/zfsonlinux/spl/issues/715
- https://github.com/zfsonlinux/zfs/wiki/Custom-Packages
Rough outline of installation
``` bash
wget sources
follow spl instructions (may warn/error about empty dkms module, this is OK)
follow zfs instructions (may warn/error about empty dkms module, this is OK)
cd zfs-0.7.13 && make deb-utils && for file in *.deb; do echo $file; done
Run sudo gdebi -q --non-interactive $file for each in the list that makes sense to install (omit test and dracut packages)
dkms build spl/0.7.13
dkms install spl/0.7.13
dkms build zfs/0.7.13
dkms install zfs/0.7.13
systemctl enable zfs-import-cache zfs-import.target zfs-mount zfs-share zfs.target
```