I don’t speak French but I think you’re facing a permissions issue.
Open terminal in Ubuntu (ctrl alt+t) and enter:
sudo chown -R www-data /var/www/html/yoursite
This recursively gives ownership to your site files to www-data
(the apache group). You should then be able to import themes/plugins etc through the WordPress dashboard.
Once you have done this, if you need to change ownership back to your user (maybe you are editing theme files) enter:
sudo chown -R $USER /var/www/html/yoursite
Good luck