You are not logged in.
Hello
I can not copy the theme I downloaded for plank here
Can you help?
[root@spy /]# cp /home/babak/Hdk/ /usr/share/plank/theme
cp: -r not specified; omitting directory '/home/babak/Hdk/'Last edited by SPYAM (2020-11-14 15:18:11)
Only progress!
Offline
The -r flag needs to be used when copying folders.
See the manual for cp for usage & examples.
Last edited by Irets (2020-11-14 14:46:20)
Offline
The -r flag needs to be used when copying folders.
See the manual for cp.
[root@spy /]# cp -r /home/babak/Hdk /usr/share/plank/theme
cp: cannot stat '/home/babak/Hdk': No such file or directory
Only progress!
Offline
Did you have a typo when specifying the directory of where you're copying from?
If not, post the output of
file /home/babak/Hdk(Assuming that this file/folder is your downloaded theme)
Last edited by Irets (2020-11-14 15:00:26)
Offline
Did you have a typo when specifying the directory of where you're copying from?
If not, post the output offile /home/babak/Hdk(Assuming that this file/folder is your downloaded theme)
I renamed this file but could not copy it again
[root@spy babak]# cat /home/babak/v11/
cat: /home/babak/v11/: Is a directory
[root@spy babak]# cp -r /home/babak/v11 /usr/share/plank/theme
cp: cannot overwrite non-directory '/usr/share/plank/theme' with directory '/home/babak/v11'Only progress!
Offline
You should copy it to the director "themes" not the file "theme":
cp -r /home/babak/v11 /usr/share/plank/themes/"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
You should copy it to the director "themes" not the file "theme":
cp -r /home/babak/v11 /usr/share/plank/themes/
Thanks resolved
Sorry, I did not notice that I was writing themes
Last edited by SPYAM (2020-11-14 15:18:40)
Only progress!
Offline
You should copy it to the director "themes" not the file "theme":
cp -r /home/babak/v11 /usr/share/plank/themes/
Good catch, I glanced over that & completely missed it.
Offline