Message Access denied to file /home/dgoodman
Bingo! There are two approaches to fix this problem. You can modify the permissions of the user's home directory (/home/dgoodman), or you can move the music to a more accessible location.
On my server, I store my media in /var/music. The folder's permissions are 755 and I am both the owner as well as the group. This allows me to separate my media from my personal files. Here's how to do this:
Login to your server.
Type "cd /var" and press enter.
Type "sudo mkdir music" and press enter.
If you're prompted for a password, enter it.
Type "sudo chown dgoodman:dgoodman music" and press enter.
Type "sudo chmod 755 music" and press enter.
Now it's time to move the music. We are going to copy it instead and remove it later to be safe.
The command is "sudo cp /home/dgoodman/* /var/music" assuming the only thing in the dgoodman folder is your music.
To remove the old files if the copy was successful, type the command "sudo rm -R /home/dgoodman/*".
Hope this helps!
