1

,I used a Newbie tutorial to download several wallpapers. The tutorial suggested that I create a 'wallpapers' folder on my desktop to store them. That worked fine, but now I want to move those files to the usr/share/backgrounds so they will show up in my default wallpaper list.

I've tried cp & mv in terminal, but neither works, and I get an error message the "usr/share/backgrounds" doesn't exist, though I can access it in Terminal. Could this be a permission problem, or is there an easier way to do this?

3 Answers3

1

The theme section you are shown when selecting properties from the desktop also has a drop down menu to select a wallpaper from the /home/$USER/Pictures/ folder.

enter image description here

This should be the most logical place to store pictures.

Nevertheless the command to store those images in /usr/share/background/ would be

sudo cp /home/$USER/Desktop/wallpapers/* /usr/share/backgrounds/
Rinzwind
  • 309,379
0

Yes - it's to do with permissions. Just add sudo to your commands and they should work as you intend.

Simon Hoare
  • 494
  • 3
  • 14
0

It sounds like it may be a permissions issue. Try it with sudo and see if you have any luck.

If not, comment on this answer.

JamesTheAwesomeDude
  • 1,986
  • 5
  • 21
  • 42