Changes

From Amahi Wiki
Jump to: navigation, search
Bigfoot65
 
== updates from testing in Amahi 7 / Fedora 19 ==
 
I had to make two changes to get my shares mounted properly in Amahi 7 (rc7):
- 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.
 
- it seems that the database tables have changed since the script was written (either during Amahi 7 development or earlier?). I didn't edit the wiki for this one as I thought it may be Amahi 7 specific. The script line
 
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 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