Changes

From Amahi Wiki
Jump to: navigation, search
== updates from testing in Amahi 7 / Fedora 19 ==
I had to make two changes to get my shares mounted properly in Amahi 7 (rc7rc8):
- dropbox link to the script hosted at dropbox is wrong - was listed as http://dl.dropbox.com/u/3022105/Amahi/mount_shares_locally but should be http://dl.dropboxusercontent.com/u/3022105/Amahi/mount_shares_locally. Have updated wiki accordingly.
mysql -u root -phda -e "select comment from shares" hda_production | grep -v "^comment$" | xargs -d "\n" mkdir -p
doesnt work - gives error "Unknown column 'comment' in 'field list'". Checking the actual columns it seems the right one is 'name'; I changed the script on my machine to
mysql -u root -phda -e "select name from shares" hda_production | grep -v "^comment$" | xargs -d "\n" mkdir -p
and reran the mount_shares_locally service - now works fine.
26

edits