
RTL-Plus
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
MRjp
12 years ago
Report
agrippas
12 years ago
Finally (as root) do:
cd /usr/share/cairo-clock/themes/ && chown -R root:\ RTL-Plus && chmod -R 755 RTL-Plus
Report
luckyphillipe
12 years ago
chown: missing operand after `root: RTL-Plus'
Try `chown --help' for more information.
The following options modify how a hierarchy is traversed when the -R
option is also specified. If more than one is specified, only the final
one takes effect.
-H if a command line argument is a symbolic link
to a directory, traverse it
-L traverse every symbolic link to a directory
encountered
-P do not traverse any symbolic links (default)
--help display this help and exit
--version output version information and exit
Owner is unchanged if missing. Group is unchanged if missing, but changed
to login group if implied by a `:' following a symbolic OWNER.
OWNER and GROUP may be numeric as well as symbolic.
Examples:
chown root /u Change the owner of /u to "root".
chown root:staff /u Likewise, but also change its group to "staff".
chown -hR root /u Change the owner of /u and subfiles to "root".
Can you help?
Thanks in advance
Report
agrippas
12 years ago
cd /usr/share/cairo-clock/themes/ && chown -R root\: RTL-Plus && chmod -R 755 RTL-Plus
so instead of :\ use \:
Report