|
under root
do a chmod to change the permission on the file
chmod a+w (a[all users] +[are added] w[the permission to write])
or you can chown user_name:user_name the file to user_name so that the file will belong to user_name and user_name will be able to write in it
|