The thing is that I am starting after a few months of experience in linux to use the command line. I was trying to use a new "cursor theme". I found on reddit that I needed to move the file from the "Download" directory to /usr/share/icons.
Because it didn't work I figured it needed to be moved to the second option the reddit post stated: ~/.local/share/icons . I then figured that the reason why it didn't work was because it was a compressed file.
These are the commands that I put into the terminal.
~$ sudo mv /usr/share/icons/posy-s-cursor.tar.gz /usr/share/icons/breeze_cursors
~$ ls /usr/share/icons/breeze_cursorscursors index.theme posy-s-cursor.tar.gz
mv /usr/share/icons/breeze_cursors/posy-s-cursor.tar.gz ~/.local/share/icons
mv: cannot move '/usr/share/icons/breeze_cursors/posy-s-cursor.tar.gz' to '/home/x/.local/share/icons': Permission denied
~$ sudo mv /usr/share/icons/breeze_cursors/posy-s-cursor.tar.gz ~/.local/share/icons
~$ sudo mv ~/.local/share/icons/posy-s-cursor-tar.gz /usr/share/icons/breeze_cursors/posy-s-cursor.tar.gz
mv: cannot stat '/home/x/.local/share/icons/posy-s-cursor-tar.gz': Not a directory
I would appreciate if someone would please:
- locate the posy-s-cursor.tar.gz file and state me how to move it to
/usr/share/icons - tell me how to decompress a file using the command line.
Thanks a lot usrs.