Useful Commands
"sudo pacman -Sy"
"sudo pacman -S git fakeroot binutils"
"cd ~/Downloads"
"git clone https://aur.archlinux.org/realvnc-vnc-viewer.git"
"cd realvnc-vnc-viewer"
"sudo pacman -U realvnc-vnc-viewer-*-x86_64.pkg.tar.zst"
"su" - elevate prompt so you don't need sudo
"pwd" - show current directory
"sudo fdisk -l" - ?
"mhwd -li" - show ??
"pamac install gvfs-smb" - install samba
"rsync -avr /path/to/dir1 /path/to/destination" - how to copy with rsync
"rsync -avP /path/to/dir1/ /path/to/dir2/ /path/to/destination/" - copy two folders into one with rsync
Never use cp -r if you need to maintain soft links (symlinks) as links; -r copies the actual file the link points to. Use -a instead.
"cp" - alternate copy command