AceEsCloud Posted August 11 Share Posted August 11 Hello, very new to unraid here. I just recently setup rclone to sync dropbox. I had a really fun time allowing dockers to see my dropbox folder. Rclone is setup as a plugin and is running on the host. I use a mount scrip that runs every time the array starts; mkdir -p /mnt/user/dropbox rclone mount dropbox: /mnt/user/dropbox --allow-other & When I added --allow-other it did allow my docker apps to see my dropbox folder. I also created an unmount script that runs when I stop the array; fusermount -u /mnt/user/dropbox All seemed to be working great for the past week. Then, I noticed today that my log is spitting out an error every 2 seconds or so and I don't have any idea what its all about; Aug 10 19:44:43 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox Aug 10 19:44:44 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox Aug 10 19:44:45 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox Aug 10 19:44:46 Tower emhttpd: error: malloc_share_locations, 7199: Operation not supported (95): getxattr: /mnt/user/dropbox Everything seems to still be working but this is still driving me crazy. If anyone has any advice on what this log is telling me and/or how to fix it, please share. thanks -Andrew Quote Link to comment
JorgeB Posted August 11 Share Posted August 11 You cannot use /mnt/user, that is reserved, install the UD plugin and use /mnt/addons Quote Link to comment
AceEsCloud Posted August 11 Author Share Posted August 11 So would I no longer use user scripts to mount rclone? Sorry new to this, don't fully understand why I need unassigned devices or even what I am really doing here.... Quote Link to comment
Solution JorgeB Posted August 11 Solution Share Posted August 11 3 hours ago, AceEsCloud said: So would I no longer use user scripts to mount rclone? I don't know what that is, but as long as you don't mount it under /mnt/user it should be fine. Quote Link to comment
AceEsCloud Posted August 11 Author Share Posted August 11 User scrips just allows a script to run during any defined event. I changed my startup script to; mkdir -p /mnt/disks/dropbox rclone mount dropbox: /mnt/disks/dropbox --allow-other & User scrips runs the above script when the array is started, and also runs the below script when the array is stopped; fusermount -u /mnt/disks/dropbox Changing the directory from "/mnt/users/dropbox" to "/mnt/disks/dropbox appears to have fixed the problem. thanks for the help! Quote Link to comment
JorgeB Posted August 11 Share Posted August 11 I would recommend using /mnt/addons since it's there for that purpose, /mnt/disks is for UD disks, though possibly it won't be a problem. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.