2015-01-22, 16:49
(2015-01-22, 07:42)Matt Devo Wrote:(2015-01-22, 07:35)bolmsted Wrote: I'm not sure what I'm running into but I've noticed that I sometimes reboot the chromebox and it hangs on the OpenELEC screen on reboot and I have to physically power it off and then back on. I've setup an OS side NFS mount and installed some addons - one of which needs an OS level share installed instead of having Kodi use one built in and I can see it mounted via ssh.
I'd bet it's hanging on trying to mount the NFS share before the network is up. Do you have the share setup properly to wait for the network before mounting?
Hi Matt
it seems to hang when rebooting the box. When I power on the box from cold it takes a bit of time to come up but it does mount the file system on boot... I'm using the new method for mounting NFS. This is from my Synology running DSM4.3
Code:
OpenELEC:~/.config/system.d # more storage-pulsar.mount
[Unit]
Description=Pulsar nfs mount script
Requires=network-online.service
After=network-online.service
Before=kodi.service
[Mount]
# The share we want mount
What=192.168.1.5:/volume1/pulsar
Where=/storage/pulsar
Options=
Type=nfs
[Install]
WantedBy=multi-user.target
OpenELEC:~/.config/system.d #
OpenELEC:~/.config/system.d # df -h
Filesystem Size Used Available Use% Mounted on
devtmpfs 934.5M 136.7M 797.7M 15% /dev
/dev/sda6 242.1M 146.2M 91.9M 61% /flash
/dev/sda7 8.9G 336.0M 8.5G 4% /storage
/dev/loop0 136.8M 136.8M 0 100% /
tmpfs 936.3M 0 936.3M 0% /dev/shm
tmpfs 936.3M 5.7M 930.6M 1% /run
tmpfs 936.3M 0 936.3M 0% /sys/fs/cgroup
tmpfs 936.3M 8.0K 936.3M 0% /tmp
tmpfs 936.3M 252.0K 936.0M 0% /var
/dev/sda12 16.0M 1.4M 14.5M 9% /var/media/EFI-SYSTEM
/dev/sda8 11.5M 24.0K 11.1M 0% /var/media/OEM
/dev/sda1 1.5G 17.7M 1.4G 1% /var/media/sda1-ata-SanDisk_SSD_U110
192.168.1.5:/volume1/pulsar
7.2T 5.3T 1.9T 74% /storage/pulsar
OpenELEC:~/.config/system.d #
EDIT: sorry I put in the mount snippet twice and not the df -h to show it was mounting at boot.